3 writes to _key
Microsoft.CodeAnalysis.InteractiveHost (3)
src\Dependencies\Collections\Segmented\SegmentedDictionary`2.cs (3)
636
entry.
_key
= key;
741
entry.
_key
= default!;
820
entry.
_key
= default!;
16 references to _key
Microsoft.CodeAnalysis.InteractiveHost (16)
src\Dependencies\Collections\Segmented\SegmentedDictionary`2.cs (16)
186
Add(oldEntries[i].
_key
, oldEntries[i]._value);
381
array[index++] = new KeyValuePair<TKey, TValue>(entries[i].
_key
, entries[i]._value);
431
if (entry._hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entry.
_key
, key))
463
if (entry._hashCode == hashCode && comparer.Equals(entry.
_key
, key))
545
if (entries[i]._hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entries[i].
_key
, key))
584
if (entries[i]._hashCode == hashCode && comparer!.Equals(entries[i].
_key
, key))
723
(SupportsComparerDevirtualization && typeof(TKey).IsValueType && comparer == null ? EqualityComparer<TKey>.Default.Equals(entry.
_key
, key) : comparer!.Equals(entry.
_key
, key)))
800
(SupportsComparerDevirtualization && typeof(TKey).IsValueType && comparer == null ? EqualityComparer<TKey>.Default.Equals(entry.
_key
, key) : comparer!.Equals(entry.
_key
, key)))
913
dictEntryArray[index++] = new DictionaryEntry(entries[i].
_key
, entries[i]._value);
933
objects[index++] = new KeyValuePair<TKey, TValue>(entries[i].
_key
, entries[i]._value);
1207
_current = new KeyValuePair<TKey, TValue>(entry.
_key
, entry._value);
1335
array[index++] = entries[i].
_key
;
1416
objects[index++] = entries[i].
_key
;
1462
_currentKey = entry.
_key
;