1 instantiation of PackageWithAssemblyResult
Microsoft.CodeAnalysis.Features (1)
SymbolSearch\Windows\SymbolSearchUpdateEngine.cs (1)
136result.Add(new PackageWithAssemblyResult(
28 references to PackageWithAssemblyResult
Microsoft.CodeAnalysis.Features (13)
AddImport\Remote\AbstractAddImportFeatureService_Remote.cs (1)
42public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(RemoteServiceCallbackId callbackId, string source, string name, CancellationToken cancellationToken)
AddImport\Remote\IRemoteMissingImportDiscoveryService.cs (1)
22ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(RemoteServiceCallbackId callbackId, string source, string name, CancellationToken cancellationToken);
AddPackage\AbstractAddPackageCodeFixProvider.cs (3)
68foreach (var package in sortedPackages) 80private static async Task<ImmutableArray<PackageWithAssemblyResult>> FindMatchingPackagesAsync( 87var result = new HashSet<PackageWithAssemblyResult>();
SymbolSearch\SymbolSearchUpdateNoOpEngine.cs (2)
16public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string assemblyName, CancellationToken cancellationToken) 17=> ValueTaskFactory.FromResult(ImmutableArray<PackageWithAssemblyResult>.Empty);
SymbolSearch\Windows\SymbolSearchUpdateEngine.cs (3)
107public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync( 113return ValueTaskFactory.FromResult(ImmutableArray<PackageWithAssemblyResult>.Empty); 116var result = ArrayBuilder<PackageWithAssemblyResult>.GetInstance();
SymbolSearch\Windows\SymbolSearchUpdateEngineProxy.cs (3)
31public async ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync( 34var result = await _connection.TryInvokeAsync<ImmutableArray<PackageWithAssemblyResult>>( 38return result.HasValue ? result.Value : ImmutableArray<PackageWithAssemblyResult>.Empty;
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\MissingImportDiscovery\RemoteMissingImportDiscoveryService.cs (1)
111public 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 (12)
SymbolSearch\IRemoteSymbolSearchUpdateEngine.cs (1)
15ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string name, CancellationToken cancellationToken);
SymbolSearch\ISymbolSearchService.cs (10)
40ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync( 99internal sealed class PackageWithAssemblyResult : PackageResult, IEquatable<PackageWithAssemblyResult?>, IComparable<PackageWithAssemblyResult?> 117=> Equals(obj as PackageWithAssemblyResult); 119public bool Equals(PackageWithAssemblyResult? other) 122public int CompareTo(PackageWithAssemblyResult? other) 130private static readonly ImmutableArray<Func<PackageWithAssemblyResult, IComparable>> s_comparers = 131ImmutableArray.Create<Func<PackageWithAssemblyResult, IComparable>>(p => p.Rank, p => p.PackageName); 169public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string assemblyName, CancellationToken cancellationToken) 170=> ValueTaskFactory.FromResult(ImmutableArray<PackageWithAssemblyResult>.Empty);
SymbolSearch\ISymbolSearchUpdateEngine.cs (1)
23ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(
Microsoft.VisualStudio.LanguageServices (1)
SymbolSearch\VisualStudioSymbolSearchService.cs (1)
125public async ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(