4 writes to _size
PresentationFramework (4)
System\Windows\Controls\RowDefinition.cs (4)
154
_size
= 0;
323
_size
-= count;
642
_size
++;
660
--
_size
;
32 references to _size
PresentationFramework (32)
System\Windows\Controls\RowDefinition.cs (32)
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
); }
423
if (index < 0 || index >=
_size
)
433
if (index < 0 || index >=
_size
)
449
if (index < 0 || index >=
_size
)
459
if (index < 0 || index >=
_size
)
483
PrivateSetCapacity(
_size
);
501
get { return (
_size
); }
626
else if (
_size
== _items.Length)
631
for (int i =
_size
- 1; i >= index; --i)
662
for (int i = index; i <
_size
; ++i)
671
_items[
_size
] = null;
690
Debug.Assert(value >=
_size
);
699
if (
_size
> 0)
701
Array.Copy(_items, 0, newItems, 0,
_size
);
765
if (_index < (_collection.
_size
- 1))
774
_index = _collection.
_size
;