5 writes to _length
PresentationCore (5)
MS\Internal\Shaping\UshortList2.cs (5)
34
_length
= arrayLength;
57
set {
_length
= value; }
75
_length
= length;
89
_length
+= count;
104
_length
-= count;
9 references to _length
PresentationCore (9)
MS\Internal\Shaping\UshortList2.cs (9)
41
Invariant.Assert(index >= 0 && index <
_length
, "Index out of range");
46
Invariant.Assert(index >= 0 && index <
_length
, "Index out of range");
56
get { return
_length
; }
85
Invariant.Assert(index <=
_length
&& index >= 0, "Index out of range");
88
_storage.Insert(_index + index, count, _index +
_length
);
100
Invariant.Assert(index <
_length
&& index >= 0, "Index out of range");
101
Invariant.Assert(count > 0 && (index + count) <=
_length
, "Invalid argument");
103
_storage.Remove(_index + index, count, _index +
_length
);
114
return _storage.GetSubsetCopy(_index,
_length
);