5 writes to _length
PresentationCore (5)
Core\CSharp\MS\Internal\Shaping\UshortList2.cs (5)
47
_length
= arrayLength;
82
set {
_length
= value; }
100
_length
= length;
114
_length
+= count;
129
_length
-= count;
9 references to _length
PresentationCore (9)
Core\CSharp\MS\Internal\Shaping\UshortList2.cs (9)
60
Invariant.Assert(index >= 0 && index <
_length
, "Index out of range");
66
Invariant.Assert(index >= 0 && index <
_length
, "Index out of range");
80
get { return
_length
; }
110
Invariant.Assert(index <=
_length
&& index >= 0, "Index out of range");
113
_storage.Insert(_index + index, count, _index +
_length
);
125
Invariant.Assert(index <
_length
&& index >= 0, "Index out of range");
126
Invariant.Assert(count > 0 && (index + count) <=
_length
, "Invalid argument");
128
_storage.Remove(_index + index, count, _index +
_length
);
139
return _storage.GetSubsetCopy(_index,
_length
);