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"/>. 118if (_documentPathsToDocumentIds.ContainsKey(fullPath)) 126_documentPathsToDocumentIds.Add(fullPath, documentId); 177if (_documentPathsToDocumentIds.ContainsKey(fullPath)) 182_documentPathsToDocumentIds.Add(fullPath, documentId); 216if (_documentPathsToDocumentIds.ContainsKey(filePath)) 224_documentPathsToDocumentIds.Add(filePath, documentId); 254if (!_documentPathsToDocumentIds.TryGetValue(fullPath, out var documentId) || 276if (!_documentPathsToDocumentIds.TryGetValue(fullPath, out var documentId)) 291_documentPathsToDocumentIds.Remove(fullPath); 339var entry = _documentPathsToDocumentIds.Where(kv => kv.Value == documentId).FirstOrDefault(); 342_documentPathsToDocumentIds.Remove(entry.Key); 393return _documentPathsToDocumentIds.ContainsKey(fullPath); 411if (_documentPathsToDocumentIds.TryGetValue(filePath, out var documentId)) 485if (!_documentPathsToDocumentIds.TryGetValue(workspaceFilePath, out documentId)) 527if (_documentPathsToDocumentIds.Count != filePaths.Length) 536if (_documentPathsToDocumentIds.TryGetValue(filePath, out var documentId))