1 instantiation of PackageWithAssemblyResult
Microsoft.CodeAnalysis.Features (1)
SymbolSearch\Windows\SymbolSearchUpdateEngine.cs (1)
205result.Add(new PackageWithAssemblyResult(
25 references to PackageWithAssemblyResult
Microsoft.CodeAnalysis.Features (11)
AddImport\Remote\IRemoteMissingImportDiscoveryService.cs (1)
20ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(RemoteServiceCallbackId callbackId, string source, string name, CancellationToken cancellationToken);
AddImport\Remote\RemoteMissingImportDiscoveryServiceCallbackDispatcher.cs (1)
37public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(RemoteServiceCallbackId callbackId, string source, string name, CancellationToken cancellationToken)
AddPackage\AbstractAddPackageCodeFixProvider.cs (3)
61foreach (var package in sortedPackages) 72private static async Task<ImmutableArray<PackageWithAssemblyResult>> FindMatchingPackagesAsync( 79var result = new HashSet<PackageWithAssemblyResult>();
SymbolSearch\SymbolSearchUpdateNoOpEngine.cs (2)
21public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string assemblyName, CancellationToken cancellationToken) 22=> ValueTask.FromResult(ImmutableArray<PackageWithAssemblyResult>.Empty);
SymbolSearch\Windows\SymbolSearchUpdateEngine.cs (3)
176public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync( 182return ValueTask.FromResult(ImmutableArray<PackageWithAssemblyResult>.Empty); 185using var _ = ArrayBuilder<PackageWithAssemblyResult>.GetInstance(out var result);
SymbolSearch\Windows\SymbolSearchUpdateEngineProxy.cs (1)
28public async ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\MissingImportDiscovery\RemoteMissingImportDiscoveryService.cs (1)
109public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string assemblyName, CancellationToken cancellationToken)
Services\SymbolSearchUpdate\RemoteSymbolSearchUpdateService.cs (1)
43public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string assemblyName, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (11)
SymbolSearch\IRemoteSymbolSearchUpdateEngine.cs (1)
15ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string name, CancellationToken cancellationToken);
SymbolSearch\ISymbolSearchService.cs (9)
63ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync( 111string version) : AbstractPackageResult(packageName, rank), IEquatable<PackageWithAssemblyResult?>, IComparable<PackageWithAssemblyResult?> 120=> Equals(obj as PackageWithAssemblyResult); 122public bool Equals(PackageWithAssemblyResult? other) 125public int CompareTo(PackageWithAssemblyResult? other) 133private static readonly ImmutableArray<Func<PackageWithAssemblyResult, IComparable>> s_comparers = 161public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string assemblyName, CancellationToken cancellationToken) 162=> ValueTask.FromResult(ImmutableArray<PackageWithAssemblyResult>.Empty);
SymbolSearch\ISymbolSearchUpdateEngine.cs (1)
22ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(
Microsoft.VisualStudio.LanguageServices (1)
SymbolSearch\VisualStudioSymbolSearchService.cs (1)
142public async ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(