1 write to Name
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\SearchQuery.cs (1)
30
Name
= name ?? throw new ArgumentNullException(nameof(name));
10 references to Name
Microsoft.CodeAnalysis.Workspaces (10)
FindSymbols\Declarations\DeclarationFinder.cs (2)
49
? await project.ContainsSymbolsWithNameAsync(query.
Name
!, cancellationToken).ConfigureAwait(false)
58
? compilation.GetSymbolsWithName(query.
Name
!, filter, cancellationToken)
FindSymbols\Declarations\DeclarationFinder_AllDeclarations.cs (3)
33
Contract.ThrowIfNull(query.
Name
);
34
if (string.IsNullOrWhiteSpace(query.
Name
))
44
(service, solutionInfo, cancellationToken) => service.FindAllDeclarationsWithNormalQueryAsync(solutionInfo, project.Id, query.
Name
, query.Kind, criteria, cancellationToken),
FindSymbols\SymbolFinder_Declarations_CustomQueries.cs (4)
51
if (query.
Name
!= null && string.IsNullOrWhiteSpace(query.
Name
))
96
if (query.
Name
!= null && string.IsNullOrWhiteSpace(query.
Name
))
FindSymbols\SymbolTree\SymbolTreeInfo.cs (1)
152
var queryName = query.
Name
;