9 references to _projectToOpenDocumentsMap
Microsoft.CodeAnalysis.Workspaces (9)
Workspace\Workspace_Editor.cs (9)
57docIds = [.. _projectToOpenDocumentsMap.Values.SelectMany(x => x)]; 71_projectToOpenDocumentsMap.TryGetValue(projectId, out openDocs); 89_projectToOpenDocumentsMap.MultiRemove(documentId.ProjectId, documentId); 172return _projectToOpenDocumentsMap.ContainsKey(projectId); 183return _projectToOpenDocumentsMap.TryGetValue(documentId.ProjectId, out var openDocuments) && 195if (_projectToOpenDocumentsMap.Count == 0) 200if (_projectToOpenDocumentsMap.TryGetValue(projectId, out var documentIds)) 208return _projectToOpenDocumentsMap.SelectManyAsArray(kvp => kvp.Value); 508_projectToOpenDocumentsMap.MultiAdd(documentId.ProjectId, documentId);