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