3 writes to _key
Microsoft.CodeAnalysis.Workspaces (3)
src\Dependencies\Collections\SegmentedDictionary`2.cs (3)
634
entry.
_key
= key;
739
entry.
_key
= default!;
818
entry.
_key
= default!;
16 references to _key
Microsoft.CodeAnalysis.Workspaces (16)
src\Dependencies\Collections\SegmentedDictionary`2.cs (16)
184
Add(oldEntries[i].
_key
, oldEntries[i]._value);
379
array[index++] = new KeyValuePair<TKey, TValue>(entries[i].
_key
, entries[i]._value);
429
if (entry._hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entry.
_key
, key))
461
if (entry._hashCode == hashCode && comparer.Equals(entry.
_key
, key))
543
if (entries[i]._hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entries[i].
_key
, key))
582
if (entries[i]._hashCode == hashCode && comparer!.Equals(entries[i].
_key
, key))
721
(SupportsComparerDevirtualization && typeof(TKey).IsValueType && comparer == null ? EqualityComparer<TKey>.Default.Equals(entry.
_key
, key) : comparer!.Equals(entry.
_key
, key)))
798
(SupportsComparerDevirtualization && typeof(TKey).IsValueType && comparer == null ? EqualityComparer<TKey>.Default.Equals(entry.
_key
, key) : comparer!.Equals(entry.
_key
, key)))
911
dictEntryArray[index++] = new DictionaryEntry(entries[i].
_key
, entries[i]._value);
931
objects[index++] = new KeyValuePair<TKey, TValue>(entries[i].
_key
, entries[i]._value);
1205
_current = new KeyValuePair<TKey, TValue>(entry.
_key
, entry._value);
1333
array[index++] = entries[i].
_key
;
1414
objects[index++] = entries[i].
_key
;
1460
_currentKey = entry.
_key
;