4 writes to _size
PresentationFramework (4)
System\Windows\Controls\ColumnDefinition.cs (4)
160
_size
= 0;
329
_size
-= count;
648
_size
++;
666
--
_size
;
32 references to _size
PresentationFramework (32)
System\Windows\Controls\ColumnDefinition.cs (32)
85
if (array.Length - index <
_size
)
90
if (
_size
> 0)
93
Array.Copy(_items, 0, array, index,
_size
);
107
if (array.Length - index <
_size
)
112
if (
_size
> 0)
115
Array.Copy(_items, 0, array, index,
_size
);
130
PrivateInsert(
_size
, value as ColumnDefinition);
131
return (
_size
- 1);
141
PrivateInsert(
_size
, value);
152
for (int i = 0; i <
_size
; ++i)
227
if (index < 0 || index >
_size
)
241
if (index < 0 || index >
_size
)
285
if (index < 0 || index >=
_size
)
304
if (index < 0 || index >=
_size
)
312
if (
_size
- index < count)
330
for (int i = index; i <
_size
; ++i)
374
get { return (
_size
); }
429
if (index < 0 || index >=
_size
)
439
if (index < 0 || index >=
_size
)
455
if (index < 0 || index >=
_size
)
465
if (index < 0 || index >=
_size
)
489
PrivateSetCapacity(
_size
);
507
get { return (
_size
); }
632
else if (
_size
== _items.Length)
637
for (int i =
_size
- 1; i >= index; --i)
668
for (int i = index; i <
_size
; ++i)
677
_items[
_size
] = null;
696
Debug.Assert(value >=
_size
);
705
if (
_size
> 0)
707
Array.Copy(_items, 0, newItems, 0,
_size
);
771
if (_index < (_collection.
_size
- 1))
780
_index = _collection.
_size
;