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