8 writes to _index
PresentationFramework (8)
MS\Internal\Data\PathParser.cs (8)
93
_index
= 0;
105
++
_index
;
130
++
_index
;
134
++
_index
;
189
++
_index
;
198
++
_index
;
236
int start = ++
_index
; // skip over initial [
256
Char c = _path[
_index
++];
15 references to _index
PresentationFramework (15)
MS\Internal\Data\PathParser.cs (15)
102
char c = (
_index
< _n) ? _path[
_index
] : NullChar;
140
SetError(nameof(SR.PathSyntax), _path.Substring(0,
_index
), _path.Substring(
_index
));
184
int start =
_index
;
188
while (
_index
< _n && _path[
_index
] == '.')
191
while (
_index
< _n && (level > 0 || !IsSpecialChar(_path[
_index
])))
193
if (_path[
_index
] == '(')
195
else if (_path[
_index
] == ')')
209
SetError(nameof(SR.UnmatchedParen), _path.Substring(0,
_index
));
213
string name = _path.Substring(start,
_index
- start).Trim();
250
if (
_index
>= _n)
384
_state = (
_index
< _n) ? State.DrillIn : State.Done;