Home
last modified time | relevance | path

Searched refs:currentKeys (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DSerializableWeakDictionary.cs29 List<TKey> currentKeys; in Add()
31 ObtainKeysAndValues(out currentKeys, out currentValues); in Add()
32 if(currentKeys.Contains(key)) in Add()
53 List<TKey> currentKeys; in Remove()
55 ObtainKeysAndValues(out currentKeys, out currentValues); in Remove()
56 var index = currentKeys.IndexOf(key); in Remove()
71 List<TKey> currentKeys; in TryGetValue()
73 ObtainKeysAndValues(out currentKeys, out currentValues); in TryGetValue()
74 var index = currentKeys.IndexOf(key); in TryGetValue()
100 List<TKey> currentKeys;
[all …]