5 instantiations of Entry
PresentationCore (5)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (5)
1326
_head = new
Entry
(key, value);
1339
others.Add(new
Entry
(key, value));
1348
((List<Entry>)(_head._key)).Add(new
Entry
(key, value));
1354
((List<Entry>)(_head._key))[index] = new
Entry
(key, value);
1369
_head = new
Entry
();
12 references to Entry
PresentationCore (12)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (12)
1264
private
Entry
_head;
1290
List<
Entry
> others = (List<
Entry
>)(_head._key);
1334
List<
Entry
> others = new List<
Entry
>(2); // by default we have two entries in the extra storage.
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;
1447
return ((List<
Entry
>)_head._key).Count;
1467
return ((List<
Entry
>)_head._key)[index]._key;