4 writes to _size
PresentationFramework (4)
System\Windows\Controls\ColumnDefinition.cs (4)
172
_size
= 0;
341
_size
-= count;
660
_size
++;
678
--
_size
;
32 references to _size
PresentationFramework (32)
System\Windows\Controls\ColumnDefinition.cs (32)
97
if (array.Length - index <
_size
)
102
if (
_size
> 0)
105
Array.Copy(_items, 0, array, index,
_size
);
119
if (array.Length - index <
_size
)
124
if (
_size
> 0)
127
Array.Copy(_items, 0, array, index,
_size
);
142
PrivateInsert(
_size
, value as ColumnDefinition);
143
return (
_size
- 1);
153
PrivateInsert(
_size
, value);
164
for (int i = 0; i <
_size
; ++i)
239
if (index < 0 || index >
_size
)
253
if (index < 0 || index >
_size
)
297
if (index < 0 || index >=
_size
)
316
if (index < 0 || index >=
_size
)
324
if (
_size
- index < count)
342
for (int i = index; i <
_size
; ++i)
386
get { return (
_size
); }
441
if (index < 0 || index >=
_size
)
451
if (index < 0 || index >=
_size
)
467
if (index < 0 || index >=
_size
)
477
if (index < 0 || index >=
_size
)
501
PrivateSetCapacity(
_size
);
519
get { return (
_size
); }
644
else if (
_size
== _items.Length)
649
for (int i =
_size
- 1; i >= index; --i)
680
for (int i = index; i <
_size
; ++i)
689
_items[
_size
] = null;
708
Debug.Assert(value >=
_size
);
717
if (
_size
> 0)
719
Array.Copy(_items, 0, newItems, 0,
_size
);
783
if (_index < (_collection.
_size
- 1))
792
_index = _collection.
_size
;