4 writes to _size
PresentationFramework (4)
System\Windows\Controls\ColumnDefinition.cs (4)
162
_size
= 0;
331
_size
-= count;
650
_size
++;
668
--
_size
;
32 references to _size
PresentationFramework (32)
System\Windows\Controls\ColumnDefinition.cs (32)
87
if (array.Length - index <
_size
)
92
if (
_size
> 0)
95
Array.Copy(_items, 0, array, index,
_size
);
109
if (array.Length - index <
_size
)
114
if (
_size
> 0)
117
Array.Copy(_items, 0, array, index,
_size
);
132
PrivateInsert(
_size
, value as ColumnDefinition);
133
return (
_size
- 1);
143
PrivateInsert(
_size
, value);
154
for (int i = 0; i <
_size
; ++i)
229
if (index < 0 || index >
_size
)
243
if (index < 0 || index >
_size
)
287
if (index < 0 || index >=
_size
)
306
if (index < 0 || index >=
_size
)
314
if (
_size
- index < count)
332
for (int i = index; i <
_size
; ++i)
376
get { return (
_size
); }
431
if (index < 0 || index >=
_size
)
441
if (index < 0 || index >=
_size
)
457
if (index < 0 || index >=
_size
)
467
if (index < 0 || index >=
_size
)
491
PrivateSetCapacity(
_size
);
509
get { return (
_size
); }
634
else if (
_size
== _items.Length)
639
for (int i =
_size
- 1; i >= index; --i)
670
for (int i = index; i <
_size
; ++i)
679
_items[
_size
] = null;
698
Debug.Assert(value >=
_size
);
707
if (
_size
> 0)
709
Array.Copy(_items, 0, newItems, 0,
_size
);
773
if (_index < (_collection.
_size
- 1))
782
_index = _collection.
_size
;