2 writes to _key
PresentationCore (2)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (2)
1250
_key
= k;
1342
_head.
_key
= others;
15 references to _key
PresentationCore (15)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (15)
1268
return _head.
_key
== null;
1280
if (_head.
_key
!= null)
1282
if (_head.
_key
== key)
1290
List<Entry> others = (List<Entry>)(_head.
_key
);
1294
if (others[i].
_key
== key)
1324
if (_head.
_key
== 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
;
1422
value = ((List<Entry>)_head.
_key
)[index]._value;
1437
if (_head.
_key
== null)
1447
return ((List<Entry>)_head.
_key
).Count;
1464
return _head.
_key
;
1467
return ((List<Entry>)_head.
_key
)[index].
_key
;