8 references to ConcurrentSet
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (1)
255var includedPreferredItems = new ConcurrentSet<string>();
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Diagnostics\DiagnosticAnalyzerServiceTests.cs (1)
659var diagnostics = new ConcurrentSet<DiagnosticData>();
Microsoft.CodeAnalysis.Features (3)
AbstractUseAutoPropertyAnalyzer.cs (2)
37private static readonly ObjectPool<ConcurrentSet<IFieldSymbol>> s_fieldSetPool = new(() => new()); 38private static readonly ObjectPool<ConcurrentSet<SyntaxNode>> s_nodeSetPool = new(() => new());
Workspace\BackgroundCompiler.cs (1)
23private readonly ConcurrentSet<Compilation> _mostRecentCompilations = new();
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\DependentTypeFinder.cs (1)
197var cachedModels = new ConcurrentSet<SemanticModel>();
Serialization\SolutionReplicationContext.cs (1)
13private static readonly ObjectPool<ConcurrentSet<IDisposable>> s_pool = new(() => new());
Microsoft.VisualStudio.LanguageServices (1)
SymbolSearch\AbstractDelayStartedService.cs (1)
34private readonly ConcurrentSet<string> _registeredLanguages = new();