5 instantiations of Entry
PresentationCore (5)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (5)
1326_head = new Entry(key, value); 1339others.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)
1264private Entry _head; 1290List<Entry> others = (List<Entry>)(_head._key); 1334List<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); 1377List<Entry> others = (List<Entry>)_head._key; 1422value = ((List<Entry>)_head._key)[index]._value; 1447return ((List<Entry>)_head._key).Count; 1467return ((List<Entry>)_head._key)[index]._key;