13 references to _documentPathsToDocumentIds
Microsoft.CodeAnalysis.Workspaces (13)
Workspace\ProjectSystem\ProjectSystemProject.BatchingDocumentCollection.cs (13)
52
/// 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
"/>.
101
if (
_documentPathsToDocumentIds
.ContainsKey(fullPath))
109
_documentPathsToDocumentIds
.Add(fullPath, documentId);
160
if (
_documentPathsToDocumentIds
.ContainsKey(fullPath))
165
_documentPathsToDocumentIds
.Add(fullPath, documentId);
197
if (!
_documentPathsToDocumentIds
.TryGetValue(fullPath, out var documentId))
212
_documentPathsToDocumentIds
.Remove(fullPath);
260
var entry =
_documentPathsToDocumentIds
.Where(kv => kv.Value == documentId).FirstOrDefault();
263
_documentPathsToDocumentIds
.Remove(entry.Key);
314
return
_documentPathsToDocumentIds
.ContainsKey(fullPath);
332
if (
_documentPathsToDocumentIds
.TryGetValue(filePath, out var documentId))
381
if (
_documentPathsToDocumentIds
.Count != filePaths.Length)
390
if (
_documentPathsToDocumentIds
.TryGetValue(filePath, out var documentId))