5 writes to _length
PresentationCore (5)
MS\Internal\Shaping\UshortList2.cs (5)
33
_length
= arrayLength;
56
set {
_length
= value; }
74
_length
= length;
88
_length
+= count;
103
_length
-= count;
9 references to _length
PresentationCore (9)
MS\Internal\Shaping\UshortList2.cs (9)
40
Invariant.Assert(index >= 0 && index <
_length
, "Index out of range");
45
Invariant.Assert(index >= 0 && index <
_length
, "Index out of range");
55
get { return
_length
; }
84
Invariant.Assert(index <=
_length
&& index >= 0, "Index out of range");
87
_storage.Insert(_index + index, count, _index +
_length
);
99
Invariant.Assert(index <
_length
&& index >= 0, "Index out of range");
100
Invariant.Assert(count > 0 && (index + count) <=
_length
, "Invalid argument");
102
_storage.Remove(_index + index, count, _index +
_length
);
113
return _storage.GetSubsetCopy(_index,
_length
);