4 writes to _size
PresentationFramework (4)
System\Windows\Controls\RowDefinition.cs (4)
155
_size
= 0;
324
_size
-= count;
643
_size
++;
661
--
_size
;
32 references to _size
PresentationFramework (32)
System\Windows\Controls\RowDefinition.cs (32)
80
if (array.Length - index <
_size
)
85
if (
_size
> 0)
88
Array.Copy(_items, 0, array, index,
_size
);
102
if (array.Length - index <
_size
)
107
if (
_size
> 0)
110
Array.Copy(_items, 0, array, index,
_size
);
125
PrivateInsert(
_size
, value as RowDefinition);
126
return (
_size
- 1);
136
PrivateInsert(
_size
, value);
147
for (int i = 0; i <
_size
; ++i)
222
if (index < 0 || index >
_size
)
236
if (index < 0 || index >
_size
)
280
if (index < 0 || index >=
_size
)
299
if (index < 0 || index >=
_size
)
307
if (
_size
- index < count)
325
for (int i = index; i <
_size
; ++i)
369
get { return (
_size
); }
424
if (index < 0 || index >=
_size
)
434
if (index < 0 || index >=
_size
)
450
if (index < 0 || index >=
_size
)
460
if (index < 0 || index >=
_size
)
484
PrivateSetCapacity(
_size
);
502
get { return (
_size
); }
627
else if (
_size
== _items.Length)
632
for (int i =
_size
- 1; i >= index; --i)
663
for (int i = index; i <
_size
; ++i)
672
_items[
_size
] = null;
691
Debug.Assert(value >=
_size
);
700
if (
_size
> 0)
702
Array.Copy(_items, 0, newItems, 0,
_size
);
766
if (_index < (_collection.
_size
- 1))
775
_index = _collection.
_size
;