1 write to _pathString
PresentationCore (1)
System\Windows\Media\ParsersCommon.cs (1)
519_pathString = pathString;
21 references to _pathString
PresentationCore (21)
System\Windows\Media\ParsersCommon.cs (21)
196throw new System.FormatException(SR.Format(SR.Parser_UnexpectedToken, _pathString, _curIndex - 1)); 211char ch = _pathString[_curIndex]; 259_token = _pathString[_curIndex ++]; 275_token = _pathString[_curIndex]; 297if (signAllowed && More() && ((_pathString[_curIndex] == '-') || _pathString[_curIndex] == '+')) 302while (More() && (_pathString[_curIndex] >= '0') && (_pathString[_curIndex] <= '9')) 353if (More() && ((_pathString[_curIndex] == '-') || _pathString[_curIndex] == '+')) 359if (More() && (_pathString[_curIndex] == 'I')) 369else if (More() && (_pathString[_curIndex] == 'N')) 383if (More() && (_pathString[_curIndex] == '.')) 391if (More() && ((_pathString[_curIndex] == 'E') || (_pathString[_curIndex] == 'e'))) 403if (_pathString[start] == '+') 407else if (_pathString[start] == '-') 417value = value * 10 + (_pathString[start] - '0'); 428return double.Parse(_pathString.AsSpan(start, _curIndex - start), provider: _formatProvider); 435throw new System.FormatException(SR.Format(SR.Parser_UnexpectedToken, _pathString, start), except); 450_token = _pathString[_curIndex ++];