1 write to _vector
PresentationCore (1)
MS\Internal\Generic\Span.cs (1)
445_vector = vector;
11 references to _vector
PresentationCore (11)
MS\Internal\Generic\Span.cs (11)
467while (dcp < _dcp && i < _vector.Count) 469dcp += _vector[i].Length; 474i <= _vector.Count // current value is within valid range 477&& ( i == _vector.Count 478|| _cp <= dcp + _vector[i].Length), // current cp is within range of current value 494while( _current < _vector.Count 495&& _dcp + (span = _vector[_current]).Length <= cp) 501if (_current < _vector.Count) 503_cch = _vector[_current].Length - cp + _dcp; 548get { return _current >= _vector.Count ? _defaultSpan.Value : _vector[_current].Value; }