1 write to _pathString
PresentationCore (1)
Core\CSharp\System\Windows\Media\ParsersCommon.cs (1)
535_pathString = pathString;
21 references to _pathString
PresentationCore (21)
Core\CSharp\System\Windows\Media\ParsersCommon.cs (21)
213throw new System.FormatException(SR.Get(SRID.Parser_UnexpectedToken, _pathString, _curIndex - 1)); 228char ch = _pathString[_curIndex]; 276_token = _pathString[_curIndex ++]; 292_token = _pathString[_curIndex]; 314if (signAllowed && More() && ((_pathString[_curIndex] == '-') || _pathString[_curIndex] == '+')) 319while (More() && (_pathString[_curIndex] >= '0') && (_pathString[_curIndex] <= '9')) 370if (More() && ((_pathString[_curIndex] == '-') || _pathString[_curIndex] == '+')) 376if (More() && (_pathString[_curIndex] == 'I')) 386else if (More() && (_pathString[_curIndex] == 'N')) 400if (More() && (_pathString[_curIndex] == '.')) 408if (More() && ((_pathString[_curIndex] == 'E') || (_pathString[_curIndex] == 'e'))) 420if (_pathString[start] == '+') 424else if (_pathString[start] == '-') 434value = value * 10 + (_pathString[start] - '0'); 442string subString = _pathString.Substring(start, _curIndex - start); 450throw new System.FormatException(SR.Get(SRID.Parser_UnexpectedToken, _pathString, start), except); 465_token = _pathString[_curIndex ++];