10 references to FindImplementationsAsync
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (3)
NavigationCommandHandlers\FindDerivedSymbolsCommandHandler.cs (2)
66
return await SymbolFinder.
FindImplementationsAsync
(namedTypeSymbol, solution, null, cancellationToken).ConfigureAwait(false);
70
return await SymbolFinder.
FindImplementationsAsync
(namedTypeSymbol2, solution, null, cancellationToken).ConfigureAwait(false);
NavigationCommandHandlers\FindReferencesOfOverloadsCommandHandler.cs (1)
76
var implementations = await SymbolFinder.
FindImplementationsAsync
(symbol, solution, null, token).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (1)
FindUsages\AbstractFindUsagesService_FindImplementations.cs (1)
163
var 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)
226
var methodImplementors = await SymbolFinder.
FindImplementationsAsync
(
Microsoft.VisualStudio.LanguageServices (2)
CallHierarchy\Finders\ImplementerFinder.cs (1)
40
var implementations = await SymbolFinder.
FindImplementationsAsync
(symbol, project.Solution, cancellationToken: cancellationToken).ConfigureAwait(false);
Progression\GraphQueries\ImplementedByGraphQuery.cs (1)
33
var implementations = await SymbolFinder.
FindImplementationsAsync
(symbol, solution, cancellationToken: cancellationToken).ConfigureAwait(false);