9 references to _projectToOpenDocumentsMap
Microsoft.CodeAnalysis.Workspaces (9)
Workspace\Workspace_Editor.cs (9)
59
docIds =
_projectToOpenDocumentsMap
.Values.SelectMany(x => x).ToList();
73
_projectToOpenDocumentsMap
.TryGetValue(projectId, out openDocs);
91
_projectToOpenDocumentsMap
.MultiRemove(documentId.ProjectId, documentId);
174
return
_projectToOpenDocumentsMap
.ContainsKey(projectId);
185
return
_projectToOpenDocumentsMap
.TryGetValue(documentId.ProjectId, out var openDocuments) &&
197
if (
_projectToOpenDocumentsMap
.Count == 0)
204
if (
_projectToOpenDocumentsMap
.TryGetValue(projectId, out var documentIds))
212
return
_projectToOpenDocumentsMap
.SelectMany(kvp => kvp.Value).ToImmutableArray();
484
_projectToOpenDocumentsMap
.MultiAdd(documentId.ProjectId, documentId);