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