2 writes to _items
System.Private.Windows.Core (2)
System\Collections\Generic\ArrayBuilder.cs (2)
30
_items
= new T[Math.Min(expectedCount, MaxInitialArrayLength)];
63
Array.Resize(ref
_items
, newCapacity);
9 references to _items
System.Private.Windows.Core (9)
System\Collections\Generic\ArrayBuilder.cs (9)
37
T[] array =
_items
;
39
if ((uint)count < (uint)
_items
.Length)
52
if (
_items
.Length == _maxCount)
57
Debug.Assert(_count ==
_items
.Length);
60
Debug.Assert(
_items
.Length > 0);
61
int newCapacity = Math.Min(_maxCount, 2 *
_items
.Length);
65
_items
[size] = item;
71
Debug.Assert(_count ==
_items
.Length);
73
return
_items
;