1 write to _pathString
PresentationCore (1)
System\Windows\Media\ParsersCommon.cs (1)
518_pathString = pathString;
21 references to _pathString
PresentationCore (21)
System\Windows\Media\ParsersCommon.cs (21)
195throw new System.FormatException(SR.Format(SR.Parser_UnexpectedToken, _pathString, _curIndex - 1)); 210char ch = _pathString[_curIndex]; 258_token = _pathString[_curIndex ++]; 274_token = _pathString[_curIndex]; 296if (signAllowed && More() && ((_pathString[_curIndex] == '-') || _pathString[_curIndex] == '+')) 301while (More() && (_pathString[_curIndex] >= '0') && (_pathString[_curIndex] <= '9')) 352if (More() && ((_pathString[_curIndex] == '-') || _pathString[_curIndex] == '+')) 358if (More() && (_pathString[_curIndex] == 'I')) 368else if (More() && (_pathString[_curIndex] == 'N')) 382if (More() && (_pathString[_curIndex] == '.')) 390if (More() && ((_pathString[_curIndex] == 'E') || (_pathString[_curIndex] == 'e'))) 402if (_pathString[start] == '+') 406else if (_pathString[start] == '-') 416value = value * 10 + (_pathString[start] - '0'); 427return double.Parse(_pathString.AsSpan(start, _curIndex - start), provider: _formatProvider); 434throw new System.FormatException(SR.Format(SR.Parser_UnexpectedToken, _pathString, start), except); 449_token = _pathString[_curIndex ++];