1 type derived from FrugalObjectList
WindowsBase (1)
Base\System\Windows\DependentList.cs (1)
14internal class DependentList: MS.Utility.FrugalObjectList<Dependent>
6 instantiations of FrugalObjectList
WindowsBase (6)
Base\System\Windows\Freezable.cs (3)
1258FrugalObjectList<FreezableContextPair> list = new FrugalObjectList<FreezableContextPair>(2); 1382new FrugalObjectList<FreezableContextPair>(count - numDead); 1545FrugalObjectList<EventHandler> list = new FrugalObjectList<EventHandler>(2);
Base\System\Windows\WeakEventManager.cs (2)
557_list = new FrugalObjectList<Listener>(); 565_list = new FrugalObjectList<Listener>(capacity);
Shared\MS\Utility\FrugalList.cs (1)
1967FrugalObjectList<T> myClone = new FrugalObjectList<T>();
22 references to FrugalObjectList
WindowsBase (22)
Base\System\Windows\Freezable.cs (17)
586FrugalObjectList<FreezableContextPair> contextList = ContextList; 1088FrugalObjectList<FreezableContextPair> list = ContextList; 1258FrugalObjectList<FreezableContextPair> list = new FrugalObjectList<FreezableContextPair>(2); 1320FrugalObjectList<FreezableContextPair> list = ContextList; 1371private void PruneContexts(FrugalObjectList<FreezableContextPair> oldList, int numDead) 1381FrugalObjectList<FreezableContextPair> newList = 1419FrugalObjectList<EventHandler> handlers = HandlerList; 1471FrugalObjectList<EventHandler> handlers = HandlerList; 1545FrugalObjectList<EventHandler> list = new FrugalObjectList<EventHandler>(2); 1608private FrugalObjectList<FreezableContextPair> ContextList 1619return (FrugalObjectList<FreezableContextPair>)ptrStorage._contextStorage; 1623return (FrugalObjectList<FreezableContextPair>)_contextStorage; 1647private FrugalObjectList<EventHandler> HandlerList 1658return (FrugalObjectList<EventHandler>)ptrStorage._handlerStorage; 1662return (FrugalObjectList<EventHandler>)_contextStorage; 1779FrugalObjectList<FreezableContextPair> list = ContextList; 2012FrugalObjectList<FreezableContextPair> contextList = ContextList;
Base\System\Windows\WeakEventManager.cs (1)
895private FrugalObjectList<Listener> _list; // list of listeners
Shared\MS\Utility\FrugalList.cs (4)
1965public FrugalObjectList<T> Clone() 1967FrugalObjectList<T> myClone = new FrugalObjectList<T>(); 1995public Compacter(FrugalObjectList<T> list, int newCount) 2016FrugalObjectList<T> _list;