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)
462
while (dcp < _dcp && i <
_vector
.Count)
464
dcp +=
_vector
[i].Length;
469
i <=
_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
489
while( _current <
_vector
.Count
490
&& _dcp + (span =
_vector
[_current]).Length <= cp)
496
if (_current <
_vector
.Count)
498
_cch =
_vector
[_current].Length - cp + _dcp;
543
get { return _current >=
_vector
.Count ? _defaultSpan.Value :
_vector
[_current].Value; }