6 references to FindOverridesAsync
Microsoft.CodeAnalysis.Features (1)
FindUsages\AbstractFindUsagesService_FindImplementations.cs (1)
190var overrides = await SymbolFinder.FindOverridesAsync(
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\SymbolFinder_Hierarchy.cs (1)
32/// <inheritdoc cref="FindOverridesAsync"/>
Microsoft.VisualStudio.LanguageServices (4)
CallHierarchy\CallHierarchyProvider.cs (1)
119var @overrides = await SymbolFinder.FindOverridesAsync(symbol, project.Solution, cancellationToken: cancellationToken).ConfigureAwait(false);
CallHierarchy\Finders\CallToOverrideFinder.cs (1)
27var overrides = await SymbolFinder.FindOverridesAsync(symbol, project.Solution, cancellationToken: cancellationToken).ConfigureAwait(false);
CallHierarchy\Finders\OverridingMemberFinder.cs (1)
36var overrides = await SymbolFinder.FindOverridesAsync(symbol, project.Solution, cancellationToken: cancellationToken).ConfigureAwait(false);
Progression\GraphQueries\OverridesGraphQuery.cs (1)
31var overrides = await SymbolFinder.FindOverridesAsync(symbol, solution, cancellationToken: cancellationToken).ConfigureAwait(false);