3 instantiations of Container
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ConditionalWeakTable.cs (3)
42
_container = new
Container
(this);
196
_container = new
Container
(this);
875
var newContainer = new
Container
(_parent!, newBuckets, newEntries, newEntriesIndex);
7 references to Container
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ConditionalWeakTable.cs (7)
36
private volatile
Container
_container; // The actual storage for the table; swapped out as the table grows. [cDAC] [ConditionalWeakTable] : Contract depends on the exact names of this field and its type.
364
Container
c = _container;
455
Container
c = table._container;
503
Container
c = _container;
754
internal
Container
Resize()
795
internal
Container
Resize(int newSize)
875
var
newContainer = new Container(_parent!, newBuckets, newEntries, newEntriesIndex);