13 writes to _listStore
WindowsBase (13)
Shared\MS\Utility\FrugalList.cs (13)
2031
_listStore
= null;
2039
_listStore
= new ArrayItemList<T>(collection);
2043
_listStore
= null;
2056
_listStore
= new ArrayItemList<T>(collection);
2060
_listStore
= null;
2114
_listStore
= newStore;
2167
_listStore
= new SingleItemList<T>();
2189
_listStore
= newStore;
2197
_listStore
= newStore;
2201
_listStore
= newStore;
2209
_listStore
= newStore;
2213
_listStore
= newStore;
2336
myClone.
_listStore
= (FrugalListBase<T>)_listStore.Clone();
50 references to _listStore
WindowsBase (50)
Shared\MS\Utility\FrugalList.cs (50)
2073
if (null !=
_listStore
)
2075
return
_listStore
.Capacity;
2082
if (null !=
_listStore
)
2084
capacity =
_listStore
.Capacity;
2108
if (null !=
_listStore
)
2111
newStore.Promote(
_listStore
);
2123
if (null !=
_listStore
)
2125
return
_listStore
.Count;
2137
if ((null !=
_listStore
) && ((index <
_listStore
.Count) && (index >= 0)))
2139
return
_listStore
.EntryAt(index);
2147
if ((null !=
_listStore
) && ((index <
_listStore
.Count) && (index >= 0)))
2149
_listStore
.SetAt(index, value);
2158
if (null !=
_listStore
)
2170
FrugalListStoreState myState =
_listStore
.Add(value);
2185
newStore.Promote(
_listStore
);
2196
newStore.Promote(
_listStore
);
2205
ArrayItemList<T> newStore = new ArrayItemList<T>(
_listStore
.Count + 1);
2208
newStore.Promote(
_listStore
);
2220
return
_listStore
.Count - 1;
2225
if (null !=
_listStore
)
2227
_listStore
.Clear();
2233
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
2235
return
_listStore
.Contains(value);
2242
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
2244
return
_listStore
.IndexOf(value);
2251
if ((index == 0) || ((null !=
_listStore
) && ((index <=
_listStore
.Count) && (index >= 0))))
2256
if ((null !=
_listStore
) && (
_listStore
.Count ==
_listStore
.Capacity))
2265
_listStore
.Insert(index, value);
2273
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
2275
return
_listStore
.Remove(value);
2282
if ((null !=
_listStore
) && ((index <
_listStore
.Count) && (index >= 0)))
2284
_listStore
.RemoveAt(index);
2305
_listStore
.Add(filler);
2315
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
2317
return
_listStore
.ToArray();
2324
if ((null !=
_listStore
) && (
_listStore
.Count > 0))
2326
_listStore
.CopyTo(array, index);
2334
if (null !=
_listStore
)
2336
myClone._listStore = (FrugalListBase<T>)
_listStore
.Clone();