3 writes to _head
PresentationCore (3)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (3)
1326_head = new Entry(key, value); 1369_head = new Entry(); 1390_head = others[1 - index];
21 references to _head
PresentationCore (21)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (21)
1268return _head._key == null; 1280if (_head._key != null) 1282if (_head._key == key) 1288if (_head._value.IsNull) 1290List<Entry> others = (List<Entry>)(_head._key); 1316_head._value = value; 1324if (_head._key == null) 1331if (!_head._value.IsNull) 1337others.Add(_head); 1342_head._key = others; 1343_head._value = DUCE.ResourceHandle.Null; 1348((List<Entry>)(_head._key)).Add(new Entry(key, value)); 1354((List<Entry>)(_head._key))[index] = new Entry(key, value); 1377List<Entry> others = (List<Entry>)_head._key; 1415value = _head._value; 1422value = ((List<Entry>)_head._key)[index]._value; 1437if (_head._key == null) 1441else if (!_head._value.IsNull) 1447return ((List<Entry>)_head._key).Count; 1464return _head._key; 1467return ((List<Entry>)_head._key)[index]._key;