3 writes to List
WindowsBase (3)
Shared\MS\Utility\ItemList.cs (3)
15
List
= new T[capacity];
112
List
= newList;
117
List
= new T[Math.Max(delta, 2)];
22 references to List
WindowsBase (22)
Base\System\Windows\DependencyObject.cs (4)
2251
DependencyProperty dp = DependencyProperty.RegisteredPropertyList.
List
[_effectiveValues[i].PropertyIndex];
2537
DependencyProperty.RegisteredPropertyList.
List
[effectiveValues[i].PropertyIndex];
2687
DependencyProperty dp = DependencyProperty.RegisteredPropertyList.
List
[_effectiveValues[i].PropertyIndex];
3073
DependencyProperty dp = DependencyProperty.RegisteredPropertyList.
List
[entry.PropertyIndex];
Base\System\Windows\DependencyProperty.cs (1)
1265
foreach(DependencyProperty dp in RegisteredPropertyList.
List
) {
Base\System\Windows\Freezable.cs (2)
475
DependencyProperty.RegisteredPropertyList.
List
[effectiveValues[i].PropertyIndex];
924
DependencyProperty dp = DependencyProperty.RegisteredPropertyList.
List
[srcEntry.PropertyIndex];
Shared\MS\Utility\ItemList.cs (15)
48
if (
List
[i].Equals(value))
74
List
[index] = item;
83
List
[index] = item;
106
if (
List
!= null)
108
if ((Count + delta) >
List
.Length)
110
T[] newList = new T[Math.Max(
List
.Length * 2, Count + delta)];
111
List
.CopyTo(newList, 0);
138
if (
List
!= null)
140
Array.Sort(
List
, 0, Count);
148
destinationList.Add(ref
List
[i]);
155
Array.Copy(
List
, 0, array, 0, Count);
173
Array.Clear(
List
, 0, Count);
184
Array.Copy(
List
, index + 1,
List
, index, (Count - index - 1));
187
Array.Clear(
List
, Count - 1, 1);