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