6 references to DocumentId
Microsoft.CodeAnalysis.Workspaces (6)
Rename\ConflictEngine\ConflictResolver.Session.cs (2)
796.Where(l => l.DocumentId == documentId && ShouldIncludeLocation(renameLocations, l)) 801.Where(l => l.DocumentId == documentId && l.IsRenameInStringOrComment)
Rename\IRemoteRenamerService.cs (1)
81location.DocumentId,
Rename\LightweightRenameLocations.cs (1)
124this.Locations.WhereAsArray(loc => filter(loc.DocumentId, loc.Location.SourceSpan)),
Rename\RenameUtilities.cs (2)
87return renameLocations.Select(l => solution.GetRequiredDocument(l.DocumentId)); 100var isSubset = renameLocations.Select(l => l.DocumentId.ProjectId).Distinct().Except(projectIdsOfRenameSymbolDeclaration).IsEmpty();