1 write to _vector
PresentationCore (1)
MS\Internal\Generic\Span.cs (1)
441_vector = vector;
11 references to _vector
PresentationCore (11)
MS\Internal\Generic\Span.cs (11)
463while (dcp < _dcp && i < _vector.Count) 465dcp += _vector[i].Length; 470i <= _vector.Count // current value is within valid range 473&& ( i == _vector.Count 474|| _cp <= dcp + _vector[i].Length), // current cp is within range of current value 490while( _current < _vector.Count 491&& _dcp + (span = _vector[_current]).Length <= cp) 497if (_current < _vector.Count) 499_cch = _vector[_current].Length - cp + _dcp; 544get { return _current >= _vector.Count ? _defaultSpan.Value : _vector[_current].Value; }