8 writes to _index
PresentationFramework (8)
MS\Internal\Data\PathParser.cs (8)
96_index = 0; 108++_index; 133++_index; 137++_index; 175++_index; 184++_index; 219int start = ++_index; // skip over initial [ 239char c = _path[_index++];
15 references to _index
PresentationFramework (15)
MS\Internal\Data\PathParser.cs (15)
105char c = (_index < _n) ? _path[_index] : NullChar; 143SetError(nameof(SR.PathSyntax), _path.Substring(0, _index), _path.Substring(_index)); 170int start = _index; 174while (_index < _n && _path[_index] == '.') 177while (_index < _n && (level > 0 || !IsSpecialChar(_path[_index]))) 179if (_path[_index] == '(') 181else if (_path[_index] == ')') 195SetError(nameof(SR.UnmatchedParen), _path.Substring(0, _index)); 199string name = _path.Substring(start, _index - start).Trim(); 233if (_index >= _n) 365_state = (_index < _n) ? State.DrillIn : State.Done;