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