8 references to GetInstance
Test.Utilities (8)
AggregateCategorizedAnalyzerConfigOptions.cs (1)
67var perTreeOptionsBuilder = PooledDictionary<SyntaxTree, Lazy<SyntaxTreeCategorizedAnalyzerConfigOptions>>.GetInstance();
PooledDictionary.cs (1)
103var instance = GetInstance(keyComparer);
SymbolNamesWithValueOption.cs (5)
87var namesBuilder = PooledDictionary<string, TValue>.GetInstance(); 88var symbolsBuilder = PooledDictionary<ISymbol, TValue>.GetInstance(); 89var wildcardNamesBuilder = PooledDictionary<SymbolKind, PooledDictionary<string, TValue>>.GetInstance(); 148associatedValues = PooledDictionary<string, TValue>.GetInstance(); 171associatedValues = PooledDictionary<string, TValue>.GetInstance();
TemporaryDictionary`2.cs (1)
39var newStorage = PooledDictionary<TKey, TValue>.GetInstance();