9 references to _projectToOpenDocumentsMap
Microsoft.CodeAnalysis.Workspaces (9)
Workspace\Workspace_Editor.cs (9)
56docIds = _projectToOpenDocumentsMap.Values.SelectMany(x => x).ToList(); 70_projectToOpenDocumentsMap.TryGetValue(projectId, out openDocs); 88_projectToOpenDocumentsMap.MultiRemove(documentId.ProjectId, documentId); 171return _projectToOpenDocumentsMap.ContainsKey(projectId); 182return _projectToOpenDocumentsMap.TryGetValue(documentId.ProjectId, out var openDocuments) && 194if (_projectToOpenDocumentsMap.Count == 0) 199if (_projectToOpenDocumentsMap.TryGetValue(projectId, out var documentIds)) 207return _projectToOpenDocumentsMap.SelectManyAsArray(kvp => kvp.Value); 507_projectToOpenDocumentsMap.MultiAdd(documentId.ProjectId, documentId);