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)
467
while (dcp < _dcp && i <
_vector
.Count)
469
dcp +=
_vector
[i].Length;
474
i <=
_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
494
while( _current <
_vector
.Count
495
&& _dcp + (span =
_vector
[_current]).Length <= cp)
501
if (_current <
_vector
.Count)
503
_cch =
_vector
[_current].Length - cp + _dcp;
548
get { return _current >=
_vector
.Count ? _defaultSpan.Value :
_vector
[_current].Value; }