17 references to _documentPathsToDocumentIds
Microsoft.CodeAnalysis.Workspaces (17)
Workspace\ProjectSystem\ProjectSystemProject.BatchingDocumentCollection.cs (17)
57/// The current list of documents that are being removed in this batch. Once the document is in this list, it is no longer in <see cref="_documentPathsToDocumentIds"/>. 106if (_documentPathsToDocumentIds.ContainsKey(fullPath)) 114_documentPathsToDocumentIds.Add(fullPath, documentId); 165if (_documentPathsToDocumentIds.ContainsKey(fullPath)) 170_documentPathsToDocumentIds.Add(fullPath, documentId); 204if (_documentPathsToDocumentIds.ContainsKey(filePath)) 212_documentPathsToDocumentIds.Add(filePath, documentId); 242if (!_documentPathsToDocumentIds.TryGetValue(fullPath, out var documentId) || 264if (!_documentPathsToDocumentIds.TryGetValue(fullPath, out var documentId)) 279_documentPathsToDocumentIds.Remove(fullPath); 327var entry = _documentPathsToDocumentIds.Where(kv => kv.Value == documentId).FirstOrDefault(); 330_documentPathsToDocumentIds.Remove(entry.Key); 381return _documentPathsToDocumentIds.ContainsKey(fullPath); 399if (_documentPathsToDocumentIds.TryGetValue(filePath, out var documentId)) 454if (_documentPathsToDocumentIds.TryGetValue(workspaceFilePath, out var documentId)) 503if (_documentPathsToDocumentIds.Count != filePaths.Length) 512if (_documentPathsToDocumentIds.TryGetValue(filePath, out var documentId))