9 writes to _listStore
WindowsBase (9)
Shared\MS\Utility\FrugalList.cs (9)
1749
_listStore
= newStore;
1802
_listStore
= new SingleItemList<T>();
1824
_listStore
= newStore;
1832
_listStore
= newStore;
1836
_listStore
= newStore;
1844
_listStore
= newStore;
1848
_listStore
= newStore;
1971
myClone.
_listStore
= (FrugalListBase<T>)_listStore.Clone();
2012
_list.
_listStore
= _storeCompacter.Finish();
51 references to _listStore
WindowsBase (51)
Shared\MS\Utility\FrugalList.cs (51)
1708
if (null !=
_listStore
)
1710
return
_listStore
.Capacity;
1717
if (null !=
_listStore
)
1719
capacity =
_listStore
.Capacity;
1743
if (null !=
_listStore
)
1746
newStore.Promote(
_listStore
);
1758
if (null !=
_listStore
)
1760
return
_listStore
.Count;
1772
if ((null !=
_listStore
) && ((index <
_listStore
.Count) && (index >= 0)))
1774
return
_listStore
.EntryAt(index);
1782
if ((null !=
_listStore
) && ((index <
_listStore
.Count) && (index >= 0)))
1784
_listStore
.SetAt(index, value);
1793
if (null !=
_listStore
)
1805
FrugalListStoreState myState =
_listStore
.Add(value);
1820
newStore.Promote(
_listStore
);
1831
newStore.Promote(
_listStore
);
1840
ArrayItemList<T> newStore = new ArrayItemList<T>(
_listStore
.Count + 1);
1843
newStore.Promote(
_listStore
);
1855
return
_listStore
.Count - 1;
1860
if (null !=
_listStore
)
1862
_listStore
.Clear();
1868
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
1870
return
_listStore
.Contains(value);
1877
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
1879
return
_listStore
.IndexOf(value);
1886
if ((index == 0) || ((null !=
_listStore
) && ((index <=
_listStore
.Count) && (index >= 0))))
1891
if ((null !=
_listStore
) && (
_listStore
.Count ==
_listStore
.Capacity))
1900
_listStore
.Insert(index, value);
1908
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
1910
return
_listStore
.Remove(value);
1917
if ((null !=
_listStore
) && ((index <
_listStore
.Count) && (index >= 0)))
1919
_listStore
.RemoveAt(index);
1940
_listStore
.Add(filler);
1950
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
1952
return
_listStore
.ToArray();
1959
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
1961
_listStore
.CopyTo(array, index);
1969
if (null !=
_listStore
)
1971
myClone._listStore = (FrugalListBase<T>)
_listStore
.Clone();
1999
FrugalListBase<T> store = _list.
_listStore
;