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)
213
throw new System.FormatException(SR.Get(SRID.Parser_UnexpectedToken,
_pathString
, _curIndex - 1));
228
char ch =
_pathString
[_curIndex];
276
_token =
_pathString
[_curIndex ++];
292
_token =
_pathString
[_curIndex];
314
if (signAllowed && More() && ((
_pathString
[_curIndex] == '-') ||
_pathString
[_curIndex] == '+'))
319
while (More() && (
_pathString
[_curIndex] >= '0') && (
_pathString
[_curIndex] <= '9'))
370
if (More() && ((
_pathString
[_curIndex] == '-') ||
_pathString
[_curIndex] == '+'))
376
if (More() && (
_pathString
[_curIndex] == 'I'))
386
else if (More() && (
_pathString
[_curIndex] == 'N'))
400
if (More() && (
_pathString
[_curIndex] == '.'))
408
if (More() && ((
_pathString
[_curIndex] == 'E') || (
_pathString
[_curIndex] == 'e')))
420
if (
_pathString
[start] == '+')
424
else if (
_pathString
[start] == '-')
434
value = value * 10 + (
_pathString
[start] - '0');
442
string subString =
_pathString
.Substring(start, _curIndex - start);
450
throw new System.FormatException(SR.Get(SRID.Parser_UnexpectedToken,
_pathString
, start), except);
465
_token =
_pathString
[_curIndex ++];