11 writes to _curIndex
PresentationCore (11)
System\Windows\Media\ParsersCommon.cs (11)
241_curIndex ++; 258_token = _pathString[_curIndex ++]; 298_curIndex++; 303_curIndex ++; 354_curIndex ++; 364_curIndex = Math.Min(_curIndex+8, _pathLength); // "Infinity" has 8 characters 374_curIndex = Math.Min(_curIndex+3, _pathLength); // "NaN" has 3 characters 385_curIndex ++; 393_curIndex ++; 449_token = _pathString[_curIndex ++]; 520_curIndex = startIndex;
21 references to _curIndex
PresentationCore (21)
System\Windows\Media\ParsersCommon.cs (21)
195throw new System.FormatException(SR.Format(SR.Parser_UnexpectedToken, _pathString, _curIndex - 1)); 200return _curIndex < _pathLength; 210char ch = _pathString[_curIndex]; 274_token = _pathString[_curIndex]; 296if (signAllowed && More() && ((_pathString[_curIndex] == '-') || _pathString[_curIndex] == '+')) 301while (More() && (_pathString[_curIndex] >= '0') && (_pathString[_curIndex] <= '9')) 344int start = _curIndex; 352if (More() && ((_pathString[_curIndex] == '-') || _pathString[_curIndex] == '+')) 358if (More() && (_pathString[_curIndex] == 'I')) 364_curIndex = Math.Min(_curIndex+8, _pathLength); // "Infinity" has 8 characters 368else if (More() && (_pathString[_curIndex] == 'N')) 374_curIndex = Math.Min(_curIndex+3, _pathLength); // "NaN" has 3 characters 382if (More() && (_pathString[_curIndex] == '.')) 390if (More() && ((_pathString[_curIndex] == 'E') || (_pathString[_curIndex] == 'e'))) 398if (simple && (_curIndex <= (start + 8))) // 32-bit integer 414while (start < _curIndex) 427return double.Parse(_pathString.AsSpan(start, _curIndex - start), provider: _formatProvider);