11 writes to _curIndex
PresentationCore (11)
System\Windows\Media\ParsersCommon.cs (11)
241
_curIndex
++;
258
_token = _pathString[
_curIndex
++];
298
_curIndex
++;
303
_curIndex
++;
354
_curIndex
++;
364
_curIndex
= Math.Min(_curIndex+8, _pathLength); // "Infinity" has 8 characters
374
_curIndex
= Math.Min(_curIndex+3, _pathLength); // "NaN" has 3 characters
385
_curIndex
++;
393
_curIndex
++;
449
_token = _pathString[
_curIndex
++];
520
_curIndex
= startIndex;
21 references to _curIndex
PresentationCore (21)
System\Windows\Media\ParsersCommon.cs (21)
195
throw new System.FormatException(SR.Format(SR.Parser_UnexpectedToken, _pathString,
_curIndex
- 1));
200
return
_curIndex
< _pathLength;
210
char ch = _pathString[
_curIndex
];
274
_token = _pathString[
_curIndex
];
296
if (signAllowed && More() && ((_pathString[
_curIndex
] == '-') || _pathString[
_curIndex
] == '+'))
301
while (More() && (_pathString[
_curIndex
] >= '0') && (_pathString[
_curIndex
] <= '9'))
344
int start =
_curIndex
;
352
if (More() && ((_pathString[
_curIndex
] == '-') || _pathString[
_curIndex
] == '+'))
358
if (More() && (_pathString[
_curIndex
] == 'I'))
364
_curIndex = Math.Min(
_curIndex
+8, _pathLength); // "Infinity" has 8 characters
368
else if (More() && (_pathString[
_curIndex
] == 'N'))
374
_curIndex = Math.Min(
_curIndex
+3, _pathLength); // "NaN" has 3 characters
382
if (More() && (_pathString[
_curIndex
] == '.'))
390
if (More() && ((_pathString[
_curIndex
] == 'E') || (_pathString[
_curIndex
] == 'e')))
398
if (simple && (
_curIndex
<= (start + 8))) // 32-bit integer
414
while (start <
_curIndex
)
427
return double.Parse(_pathString.AsSpan(start,
_curIndex
- start), provider: _formatProvider);