8 instantiations of ArrayItemList
System.Xaml (8)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Utility\FrugalList.cs (8)
1490ArrayItemList<T> newList = new ArrayItemList<T>(this.Capacity); 1537_targetStore = new ArrayItemList<T>(newCapacity); 1657newStore = new ArrayItemList<T>(value); 1757ArrayItemList<T> newStore = new ArrayItemList<T>(_listStore.Count + 1); 1954_listStore = new ArrayItemList<T>(collection); 1972_listStore = new ArrayItemList<T>(collection); 2032newStore = new ArrayItemList<T>(value); 2132ArrayItemList<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)
1465public void Promote(ArrayItemList<T> oldList) 1490ArrayItemList<T> newList = new ArrayItemList<T>(this.Capacity); 1520public ArrayCompacter(ArrayItemList<T> store, int newCount) 1596ArrayItemList<T> _targetStore; 1757ArrayItemList<T> newStore = new ArrayItemList<T>(_listStore.Count + 1); 2132ArrayItemList<T> newStore = new ArrayItemList<T>(_listStore.Count + 1);