1 write to _vector
PresentationCore (1)
MS\Internal\Generic\Span.cs (1)
440_vector = vector;
11 references to _vector
PresentationCore (11)
MS\Internal\Generic\Span.cs (11)
462while (dcp < _dcp && i < _vector.Count) 464dcp += _vector[i].Length; 469i <= _vector.Count // current value is within valid range 472&& ( i == _vector.Count 473|| _cp <= dcp + _vector[i].Length), // current cp is within range of current value 489while( _current < _vector.Count 490&& _dcp + (span = _vector[_current]).Length <= cp) 496if (_current < _vector.Count) 498_cch = _vector[_current].Length - cp + _dcp; 543get { return _current >= _vector.Count ? _defaultSpan.Value : _vector[_current].Value; }