3 writes to _others
PresentationCore (3)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (3)
1101
_others
= new List<Entry>(2); // by default we have two entries in the extra storage.
1131
_others
= null;
1152
_others
= null;
19 references to _others
PresentationCore (19)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (19)
1030
if (
_others
!= null)
1055
if (
_others
!= null)
1057
for (int i = 0; i <
_others
.Count; i++)
1059
if (
_others
[i]._key == key)
1071
Debug.Assert(
_others
== null, "There shouldn't be anything stored in the others array.");
1099
if (
_others
== null)
1104
_others
.Add(new Entry(key, value));
1109
_others
[index] = new Entry(key, value);
1124
if (
_others
!= null)
1126
Debug.Assert(
_others
.Count > 0);
1127
int j =
_others
.Count-1;
1128
_first =
_others
[j];
1135
_others
.RemoveAt(j);
1149
if (
_others
.Count == 1)
1156
_others
.RemoveAt(index);
1184
value =
_others
[index]._value;
1203
else if (
_others
== null)
1209
return
_others
.Count + 1;
1228
return
_others
[index - 1]._key;