6 writes to _charIndex
PresentationBuildTasks (6)
Shared\MS\Internal\TokenizerHelper.cs (6)
110++_charIndex; 212++_charIndex; // move to next character 237++_charIndex; // move past the quote 251++_charIndex; 305_charIndex++; 314++_charIndex;
18 references to _charIndex
PresentationBuildTasks (18)
Shared\MS\Internal\TokenizerHelper.cs (18)
103while (_charIndex < _strLen) 105if (!Char.IsWhiteSpace(_str, _charIndex)) 130if (_charIndex != _strLen) 132throw new System.InvalidOperationException(SR.Get(SRID.TokenizerHelperExtraDataEncountered, _charIndex, _str)); 194if (_charIndex >= _strLen) 199char currentChar = _str[_charIndex]; 215int newTokenIndex = _charIndex; 220while (_charIndex < _strLen) 222currentChar = _str[_charIndex]; 270throw new System.InvalidOperationException(SR.Get(SRID.TokenizerHelperEmptyToken, _charIndex, _str)); 280if (_charIndex < _strLen) 282char currentChar = _str[_charIndex]; 290throw new System.InvalidOperationException(SR.Get(SRID.TokenizerHelperExtraDataEncountered, _charIndex, _str)); 297while (_charIndex < _strLen) 299currentChar = _str[_charIndex]; 309throw new System.InvalidOperationException(SR.Get(SRID.TokenizerHelperEmptyToken, _charIndex, _str)); 326if (argSepCount > 0 && _charIndex >= _strLen) 328throw new System.InvalidOperationException(SR.Get(SRID.TokenizerHelperEmptyToken, _charIndex, _str));