3 writes to _head
PresentationCore (3)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (3)
1344_head = new Entry(key, value); 1387_head = new Entry(); 1408_head = others[1 - index];
21 references to _head
PresentationCore (21)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (21)
1286return _head._key == null; 1298if (_head._key != null) 1300if (_head._key == key) 1306if (_head._value.IsNull) 1308List<Entry> others = (List<Entry>)(_head._key); 1334_head._value = value; 1342if (_head._key == null) 1349if (!_head._value.IsNull) 1355others.Add(_head); 1360_head._key = others; 1361_head._value = DUCE.ResourceHandle.Null; 1366((List<Entry>)(_head._key)).Add(new Entry(key, value)); 1372((List<Entry>)(_head._key))[index] = new Entry(key, value); 1395List<Entry> others = (List<Entry>)_head._key; 1433value = _head._value; 1440value = ((List<Entry>)_head._key)[index]._value; 1455if (_head._key == null) 1459else if (!_head._value.IsNull) 1465return ((List<Entry>)_head._key).Count; 1482return _head._key; 1485return ((List<Entry>)_head._key)[index]._key;