8 writes to _index
PresentationFramework (8)
MS\Internal\Data\PathParser.cs (8)
95_index = 0; 107++_index; 132++_index; 136++_index; 174++_index; 183++_index; 218int start = ++_index; // skip over initial [ 238char c = _path[_index++];
15 references to _index
PresentationFramework (15)
MS\Internal\Data\PathParser.cs (15)
104char c = (_index < _n) ? _path[_index] : NullChar; 142SetError(nameof(SR.PathSyntax), _path.Substring(0, _index), _path.Substring(_index)); 169int start = _index; 173while (_index < _n && _path[_index] == '.') 176while (_index < _n && (level > 0 || !IsSpecialChar(_path[_index]))) 178if (_path[_index] == '(') 180else if (_path[_index] == ')') 194SetError(nameof(SR.UnmatchedParen), _path.Substring(0, _index)); 198string name = _path.Substring(start, _index - start).Trim(); 232if (_index >= _n) 364_state = (_index < _n) ? State.DrillIn : State.Done;