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)
1030if (_others != null) 1055if (_others != null) 1057for (int i = 0; i < _others.Count; i++) 1059if (_others[i]._key == key) 1071Debug.Assert(_others == null, "There shouldn't be anything stored in the others array."); 1099if (_others == null) 1104_others.Add(new Entry(key, value)); 1109_others[index] = new Entry(key, value); 1124if (_others != null) 1126Debug.Assert(_others.Count > 0); 1127int j = _others.Count-1; 1128_first = _others[j]; 1135_others.RemoveAt(j); 1149if (_others.Count == 1) 1156_others.RemoveAt(index); 1184value = _others[index]._value; 1203else if (_others == null) 1209return _others.Count + 1; 1228return _others[index - 1]._key;