17 references to FindDocumentsAsync
Microsoft.CodeAnalysis.Workspaces (17)
FindSymbols\FindReferences\Finders\ConstructorSymbolReferenceFinder.cs (2)
104await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, typeName).ConfigureAwait(false); 107await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, simpleName).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\DynamicTypeSymbolReferenceFinder.cs (1)
36return FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, DynamicIdentifier);
FindSymbols\FindReferences\Finders\EventSymbolReferenceFinder.cs (1)
59await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, symbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\ExplicitConversionSymbolReferenceFinder.cs (1)
50await FindDocumentsAsync(project, documents, StandardCallbacks<Document>.AddToHashSet, result, cancellationToken, underlyingNamedType.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\FieldSymbolReferenceFinder.cs (1)
39await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, symbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\MethodTypeParameterSymbolReferenceFinder.cs (1)
75return FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, names.ToImmutableAndClear());
FindSymbols\FindReferences\Finders\NamedTypeSymbolReferenceFinder.cs (2)
91await FindDocumentsAsync( 95await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, simpleName).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\NamespaceSymbolReferenceFinder.cs (2)
37await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, symbol.Name).ConfigureAwait(false); 45await FindDocumentsAsync(
FindSymbols\FindReferences\Finders\OrdinaryMethodReferenceFinder.cs (1)
72await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, methodSymbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\ParameterSymbolReferenceFinder.cs (1)
39return FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, symbol.Name);
FindSymbols\FindReferences\Finders\PropertyAccessorSymbolReferenceFinder.cs (1)
45await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, symbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\PropertySymbolReferenceFinder.cs (1)
117await FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, symbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\TypeParameterSymbolReferenceFinder.cs (2)
36? FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, symbol.Name, staticClassName) 37: FindDocumentsAsync(project, documents, processResult, processResultData, cancellationToken, symbol.Name, symbol.ContainingType.Name);