10 references to FindImplementationsAsync
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (3)
NavigationCommandHandlers\FindDerivedSymbolsCommandHandler.cs (2)
66return await SymbolFinder.FindImplementationsAsync(namedTypeSymbol, solution, null, cancellationToken).ConfigureAwait(false); 70return await SymbolFinder.FindImplementationsAsync(namedTypeSymbol2, solution, null, cancellationToken).ConfigureAwait(false);
NavigationCommandHandlers\FindReferencesOfOverloadsCommandHandler.cs (1)
76var implementations = await SymbolFinder.FindImplementationsAsync(symbol, solution, null, token).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (1)
FindUsages\AbstractFindUsagesService_FindImplementations.cs (1)
163var implementations = await SymbolFinder.FindImplementationsAsync(
Microsoft.CodeAnalysis.Workspaces (4)
FindSymbols\SymbolFinder_Hierarchy.cs (3)
194/// "derived", but can be found with <see cref="FindImplementationsAsync(ISymbol, Solution, 211/// "derived", but can be found with <see cref="FindImplementationsAsync(ISymbol, Solution, 342/// <inheritdoc cref="FindImplementationsAsync(ISymbol, Solution, IImmutableSet{Project}, CancellationToken)"/>
Rename\RenameUtilities.cs (1)
226var methodImplementors = await SymbolFinder.FindImplementationsAsync(
Microsoft.VisualStudio.LanguageServices (2)
CallHierarchy\Finders\ImplementerFinder.cs (1)
40var implementations = await SymbolFinder.FindImplementationsAsync(symbol, project.Solution, cancellationToken: cancellationToken).ConfigureAwait(false);
Progression\GraphQueries\ImplementedByGraphQuery.cs (1)
33var implementations = await SymbolFinder.FindImplementationsAsync(symbol, solution, cancellationToken: cancellationToken).ConfigureAwait(false);