8 references to GetInstance
Microsoft.CodeAnalysis.PublicApiAnalyzers (8)
DeclarePublicApiAnalyzer.cs (1)
398using var publicApiMap = PooledDictionary<string, ApiLine>.GetInstance(StringComparer.Ordinal);
src\RoslynAnalyzers\Utilities\Compiler\Options\SymbolNamesWithValueOption.cs (5)
89var namesBuilder = PooledDictionary<string, TValue>.GetInstance(); 90var symbolsBuilder = PooledDictionary<ISymbol, TValue>.GetInstance(); 91var wildcardNamesBuilder = PooledDictionary<SymbolKind, PooledDictionary<string, TValue>>.GetInstance(); 150associatedValues = PooledDictionary<string, TValue>.GetInstance(); 173associatedValues = PooledDictionary<string, TValue>.GetInstance();
src\RoslynAnalyzers\Utilities\Compiler\PooledObjects\PooledDictionary.cs (1)
105var instance = GetInstance(keyComparer);
src\RoslynAnalyzers\Utilities\Compiler\PooledObjects\TemporaryDictionary`2.cs (1)
41var newStorage = PooledDictionary<TKey, TValue>.GetInstance();