6 references to StringIgnoreCaseHashSet
Microsoft.CodeAnalysis.Workspaces (6)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Create.cs (4)
337identifiers = SharedPools.StringIgnoreCaseHashSet.AllocateAndClear(); 338escapedIdentifiers = SharedPools.StringIgnoreCaseHashSet.AllocateAndClear(); 359SharedPools.StringIgnoreCaseHashSet.ClearAndFree(identifiers); 360SharedPools.StringIgnoreCaseHashSet.ClearAndFree(escapedIdentifiers);
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Utilities\NameGenerator.cs (2)
24using var nameSetPool = (isCaseSensitive ? SharedPools.StringHashSet : SharedPools.StringIgnoreCaseHashSet).GetPooledObject(); 91using var usedNamesPool = (isCaseSensitive ? SharedPools.StringHashSet : SharedPools.StringIgnoreCaseHashSet).GetPooledObject();