15 references to FindDocumentsAsync
Microsoft.CodeAnalysis.Workspaces (15)
FindSymbols\FindReferences\Finders\ConstructorSymbolReferenceFinder.cs (2)
83
var documentsWithName = await
FindDocumentsAsync
(project, documents, cancellationToken, typeName).ConfigureAwait(false);
86
? await
FindDocumentsAsync
(project, documents, cancellationToken, simpleName).ConfigureAwait(false)
FindSymbols\FindReferences\Finders\EventSymbolReferenceFinder.cs (1)
44
var documentsWithName = await
FindDocumentsAsync
(project, documents, cancellationToken, symbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\ExplicitConversionSymbolReferenceFinder.cs (1)
46
var documentsWithName = await
FindDocumentsAsync
(project, documents, cancellationToken, underlyingNamedType.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\FieldSymbolReferenceFinder.cs (1)
37
var documentsWithName = await
FindDocumentsAsync
(project, documents, cancellationToken, symbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\MethodTypeParameterSymbolReferenceFinder.cs (1)
58
return
FindDocumentsAsync
(project, documents, cancellationToken, symbol.Name,
FindSymbols\FindReferences\Finders\NamedTypeSymbolReferenceFinder.cs (2)
91
var documentsWithName = await
FindDocumentsAsync
(
95
? await
FindDocumentsAsync
(project, documents, cancellationToken, simpleName).ConfigureAwait(false)
FindSymbols\FindReferences\Finders\NamespaceSymbolReferenceFinder.cs (2)
39
? await
FindDocumentsAsync
(project, documents, cancellationToken, symbol.Name).ConfigureAwait(false)
46
result.AddRange(await
FindDocumentsAsync
(
FindSymbols\FindReferences\Finders\OrdinaryMethodReferenceFinder.cs (1)
68
var ordinaryDocuments = await
FindDocumentsAsync
(project, documents, cancellationToken, methodSymbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\ParameterSymbolReferenceFinder.cs (1)
36
return
FindDocumentsAsync
(project, documents, cancellationToken, symbol.Name);
FindSymbols\FindReferences\Finders\PropertyAccessorSymbolReferenceFinder.cs (1)
44
var documentsWithName = await
FindDocumentsAsync
(project, documents, cancellationToken, symbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\PropertySymbolReferenceFinder.cs (1)
102
var ordinaryDocuments = await
FindDocumentsAsync
(project, documents, cancellationToken, symbol.Name).ConfigureAwait(false);
FindSymbols\FindReferences\Finders\TypeParameterSymbolReferenceFinder.cs (1)
32
return
FindDocumentsAsync
(project, documents, cancellationToken, symbol.Name, symbol.ContainingType.Name);