2 writes to Entries
PresentationFramework (2)
src\Shared\MS\Utility\ItemMap.cs (2)
29Entries = new Entry[SearchTypeThreshold]; 50Entries = destEntries;
21 references to Entries
PresentationFramework (21)
src\Framework\System\Windows\FrameworkTemplate.cs (2)
1273for (int j = 0; j < child.ValueLookupListFromProperty.Entries[i].Value.Count; j++) 1278valueLookup = (ChildValueLookup)child.ValueLookupListFromProperty.Entries[i].Value.List[j];
src\Framework\System\Windows\StyleHelper.cs (9)
536childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Add(ref valueLookup); 575ref triggerSourceRecordMap.Entries[index].Value.ChildPropertyDependents); 652AddPropertyDependent(childIndex, destinationProperty, ref triggerSourceRecordMap.Entries[index].Value.ChildPropertyDependents); 2586if (childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Count > 0) 2594ref childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value, 3745if (childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Count > 0) 3747ChildValueLookup childValue = childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.List[0]; 4219DependencyProperty dp = childRecord.ValueLookupListFromProperty.Entries[i].Value.List[0].Property; 4326TriggerSourceRecord record = triggerSourceRecordMap.Entries[mapIndex].Value;
src\Shared\MS\Utility\ItemMap.cs (10)
27if (Entries == null) 35Entry[] destEntries = Entries; 38if ((Count + 1) > Entries.Length) 40destEntries = new Entry[Entries.Length * 2]; 43Array.Copy(Entries, 0, destEntries, 0, index); 47Array.Copy(Entries, index, destEntries, index + 1, Count - index); 53Entries[index] = EmptyEntry; 56Entries[index].Key = key; 79keyPv = Entries[iPv].Key; 103keyPv = Entries[iPv].Key;