9 references to FindDerivedClassesArrayAsync
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (5)
SymbolFinder\SymbolFinderTests.cs (5)
657var results = await SymbolFinder.FindDerivedClassesArrayAsync(firstType, solution, transitive: true, ImmutableHashSet.Create(csProject), CancellationToken.None); 662results = await SymbolFinder.FindDerivedClassesArrayAsync(firstType, solution, transitive: true, ImmutableHashSet.Create(otherProject), CancellationToken.None); 710var typesThatDerive = await SymbolFinder.FindDerivedClassesArrayAsync( 717var typesThatDerive = await SymbolFinder.FindDerivedClassesArrayAsync( 724var typesThatDerive = await SymbolFinder.FindDerivedClassesArrayAsync(
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService_FindImplementations.cs (1)
200return ImmutableArray<ISymbol>.CastUp(await SymbolFinder.FindDerivedClassesArrayAsync(
InheritanceMargin\AbstractInheritanceMarginService_Helpers.cs (1)
699return await SymbolFinder.FindDerivedClassesArrayAsync(
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SymbolFinder_Hierarchy.cs (2)
240return await FindDerivedClassesArrayAsync(type, solution, transitive, projects, cancellationToken).ConfigureAwait(false); 243/// <inheritdoc cref="FindDerivedClassesArrayAsync(INamedTypeSymbol, Solution, bool, IImmutableSet{Project}, CancellationToken)"/>