4 writes to _size
PresentationFramework (4)
System\Windows\Controls\ColumnDefinition.cs (4)
159
_size
= 0;
328
_size
-= count;
647
_size
++;
665
--
_size
;
32 references to _size
PresentationFramework (32)
System\Windows\Controls\ColumnDefinition.cs (32)
84
if (array.Length - index <
_size
)
89
if (
_size
> 0)
92
Array.Copy(_items, 0, array, index,
_size
);
106
if (array.Length - index <
_size
)
111
if (
_size
> 0)
114
Array.Copy(_items, 0, array, index,
_size
);
129
PrivateInsert(
_size
, value as ColumnDefinition);
130
return (
_size
- 1);
140
PrivateInsert(
_size
, value);
151
for (int i = 0; i <
_size
; ++i)
226
if (index < 0 || index >
_size
)
240
if (index < 0 || index >
_size
)
284
if (index < 0 || index >=
_size
)
303
if (index < 0 || index >=
_size
)
311
if (
_size
- index < count)
329
for (int i = index; i <
_size
; ++i)
373
get { return (
_size
); }
428
if (index < 0 || index >=
_size
)
438
if (index < 0 || index >=
_size
)
454
if (index < 0 || index >=
_size
)
464
if (index < 0 || index >=
_size
)
488
PrivateSetCapacity(
_size
);
506
get { return (
_size
); }
631
else if (
_size
== _items.Length)
636
for (int i =
_size
- 1; i >= index; --i)
667
for (int i = index; i <
_size
; ++i)
676
_items[
_size
] = null;
695
Debug.Assert(value >=
_size
);
704
if (
_size
> 0)
706
Array.Copy(_items, 0, newItems, 0,
_size
);
770
if (_index < (_collection.
_size
- 1))
779
_index = _collection.
_size
;