4 writes to _size
PresentationFramework (4)
System\Windows\Controls\RowDefinition.cs (4)
154
_size
= 0;
323
_size
-= count;
686
_size
++;
704
--
_size
;
34 references to _size
PresentationFramework (34)
System\Windows\Controls\RowDefinition.cs (34)
79
if (array.Length - index <
_size
)
84
if (
_size
> 0)
87
Array.Copy(_items, 0, array, index,
_size
);
101
if (array.Length - index <
_size
)
106
if (
_size
> 0)
109
Array.Copy(_items, 0, array, index,
_size
);
124
PrivateInsert(
_size
, value as RowDefinition);
125
return (
_size
- 1);
135
PrivateInsert(
_size
, value);
146
for (int i = 0; i <
_size
; ++i)
221
if (index < 0 || index >
_size
)
235
if (index < 0 || index >
_size
)
279
if (index < 0 || index >=
_size
)
298
if (index < 0 || index >=
_size
)
306
if (
_size
- index < count)
324
for (int i = index; i <
_size
; ++i)
368
get { return (
_size
); }
421
if (index < 0 || index >=
_size
)
431
if (index < 0 || index >=
_size
)
447
if (index < 0 || index >=
_size
)
457
if (index < 0 || index >=
_size
)
481
PrivateSetCapacity(
_size
);
515
for (int i = 0; i <
_size
; i++)
525
for (int i = 0; i <
_size
; i++)
545
get { return (
_size
); }
670
else if (
_size
== _items.Length)
675
for (int i =
_size
- 1; i >= index; --i)
706
for (int i = index; i <
_size
; ++i)
715
_items[
_size
] = null;
737
Debug.Assert(value >=
_size
);
746
if (
_size
> 0)
748
Array.Copy(_items, 0, newItems, 0,
_size
);
812
if (_index < (_collection.
_size
- 1))
821
_index = _collection.
_size
;