8 instantiations of ArrayItemList
System.Xaml (8)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Utility\FrugalList.cs (8)
1509ArrayItemList<T> newList = new ArrayItemList<T>(this.Capacity); 1556_targetStore = new ArrayItemList<T>(newCapacity); 1675newStore = new ArrayItemList<T>(value); 1777ArrayItemList<T> newStore = new ArrayItemList<T>(_listStore.Count + 1); 1975_listStore = new ArrayItemList<T>(collection); 1993_listStore = new ArrayItemList<T>(collection); 2055newStore = new ArrayItemList<T>(value); 2157ArrayItemList<T> newStore = new ArrayItemList<T>(_listStore.Count + 1);
6 references to ArrayItemList
System.Xaml (6)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Utility\FrugalList.cs (6)
1484public void Promote(ArrayItemList<T> oldList) 1509ArrayItemList<T> newList = new ArrayItemList<T>(this.Capacity); 1539public ArrayCompacter(ArrayItemList<T> store, int newCount) 1615private ArrayItemList<T> _targetStore; 1777ArrayItemList<T> newStore = new ArrayItemList<T>(_listStore.Count + 1); 2157ArrayItemList<T> newStore = new ArrayItemList<T>(_listStore.Count + 1);