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