• Home
  • Raw
  • Download

Lines Matching refs:KeyValuePair

80         private readonly Dictionary<TKey, LinkedListNode<KeyValuePair<TKey, TValue>>> map =
81 new Dictionary<TKey, LinkedListNode<KeyValuePair<TKey, TValue>>>(KeyEqualityComparer);
82 …private readonly LinkedList<KeyValuePair<TKey, TValue>> list = new LinkedList<KeyValuePair<TKey, T…
150 LinkedListNode<KeyValuePair<TKey, TValue>> node; in Remove()
173 LinkedListNode<KeyValuePair<TKey, TValue>> node; in TryGetValue()
213 LinkedListNode<KeyValuePair<TKey, TValue>> node;
214 var pair = new KeyValuePair<TKey, TValue>(key, value);
256 public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator() in GetEnumerator()
276 void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) in Add()
295 bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) in Contains()
306 …void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayI… in CopyTo()
317 bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) in Remove()
323 LinkedListNode<KeyValuePair<TKey, TValue>> node; in Remove()
453KeyValuePair<TKey, TValue> entry = ParsingPrimitivesMessages.ReadMapEntry(ref ctx, codec); in AddEntriesFrom()
518 private static int CalculateEntrySize(Codec codec, KeyValuePair<TKey, TValue> entry) in CalculateEntrySize()
612 private readonly IEnumerator<KeyValuePair<TKey, TValue>> enumerator;
614 internal DictionaryEnumerator(IEnumerator<KeyValuePair<TKey, TValue>> enumerator) in DictionaryEnumerator()
678 private readonly Func<KeyValuePair<TKey, TValue>, T> projection;
683 Func<KeyValuePair<TKey, TValue>, T> projection, in MapView()