5 instantiations of Entry
PresentationCore (5)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (5)
1344_head = new Entry(key, value); 1357others.Add(new Entry(key, value)); 1366((List<Entry>)(_head._key)).Add(new Entry(key, value)); 1372((List<Entry>)(_head._key))[index] = new Entry(key, value); 1387_head = new Entry();
12 references to Entry
PresentationCore (12)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (12)
1282private Entry _head; 1308List<Entry> others = (List<Entry>)(_head._key); 1352List<Entry> others = new List<Entry>(2); // by default we have two entries in the extra storage. 1366((List<Entry>)(_head._key)).Add(new Entry(key, value)); 1372((List<Entry>)(_head._key))[index] = new Entry(key, value); 1395List<Entry> others = (List<Entry>)_head._key; 1440value = ((List<Entry>)_head._key)[index]._value; 1465return ((List<Entry>)_head._key).Count; 1485return ((List<Entry>)_head._key)[index]._key;