8 writes to _index
PresentationFramework (8)
MS\Internal\Data\PathParser.cs (8)
94
_index
= 0;
106
++
_index
;
131
++
_index
;
135
++
_index
;
190
++
_index
;
199
++
_index
;
237
int start = ++
_index
; // skip over initial [
257
Char c = _path[
_index
++];
15 references to _index
PresentationFramework (15)
MS\Internal\Data\PathParser.cs (15)
103
char c = (
_index
< _n) ? _path[
_index
] : NullChar;
141
SetError(nameof(SR.PathSyntax), _path.Substring(0,
_index
), _path.Substring(
_index
));
185
int start =
_index
;
189
while (
_index
< _n && _path[
_index
] == '.')
192
while (
_index
< _n && (level > 0 || !IsSpecialChar(_path[
_index
])))
194
if (_path[
_index
] == '(')
196
else if (_path[
_index
] == ')')
210
SetError(nameof(SR.UnmatchedParen), _path.Substring(0,
_index
));
214
string name = _path.Substring(start,
_index
- start).Trim();
251
if (
_index
>= _n)
385
_state = (
_index
< _n) ? State.DrillIn : State.Done;