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)
1268
return
_head
._key == null;
1280
if (
_head
._key != null)
1282
if (
_head
._key == key)
1288
if (
_head
._value.IsNull)
1290
List<Entry> others = (List<Entry>)(
_head
._key);
1316
_head
._value = value;
1324
if (
_head
._key == null)
1331
if (!
_head
._value.IsNull)
1337
others.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);
1377
List<Entry> others = (List<Entry>)
_head
._key;
1415
value =
_head
._value;
1422
value = ((List<Entry>)
_head
._key)[index]._value;
1437
if (
_head
._key == null)
1441
else if (!
_head
._value.IsNull)
1447
return ((List<Entry>)
_head
._key).Count;
1464
return
_head
._key;
1467
return ((List<Entry>)
_head
._key)[index]._key;