7 implementations of AddItemsAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
FindUsages\BufferedFindUsagesContext.cs (1)
126async ValueTask IStreamingProgressTracker.AddItemsAsync(int count, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (1)
ValueTracking\ValueTracker.FindReferencesProgress.cs (1)
27public ValueTask AddItemsAsync(int count, CancellationToken _) => new();
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Services\FindUsages\RemoteFindUsagesService.cs (1)
89public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken)
Services\SymbolFinder\RemoteSymbolFinderService.cs (2)
192public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken) 245public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
35public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken) => default;
Shared\Utilities\StreamingProgressTracker.cs (1)
24public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken)
11 references to AddItemsAsync
Microsoft.CodeAnalysis.EditorFeatures (4)
ExternalAccess\VSTypeScript\VSTypeScriptFindUsagesService.cs (1)
74=> _progressTracker.AddItemsAsync(count, cancellationToken);
ExternalAccess\VSTypeScript\VSTypeScriptStreamingProgressTracker.cs (1)
22=> _progressTracker.AddItemsAsync(count, cancellationToken);
FindUsages\BufferedFindUsagesContext.cs (2)
102await presenterContext.ProgressTracker.AddItemsAsync(_state.TotalItemCount, cancellationToken).ConfigureAwait(false); 131await _streamingPresenterContext.ProgressTracker.AddItemsAsync(count, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (2)
FindUsages\IRemoteFindUsagesService.cs (1)
103=> _context.ProgressTracker.AddItemsAsync(count, cancellationToken);
NavigateTo\NavigateToSearcher.cs (1)
91await _progress_doNotAccessDirectly.AddItemsAsync(count, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (5)
FindSymbols\FindLiterals\FindLiteralsSearchEngine.cs (1)
88await _progressTracker.AddItemsAsync(count, cancellationToken).ConfigureAwait(false);
FindSymbols\FindReferences\FindReferencesSearchEngine.cs (1)
102await _progressTracker.AddItemsAsync(projectsToSearch.Length, cancellationToken).ConfigureAwait(false);
FindSymbols\SymbolFinder.FindLiteralsServerCallback.cs (1)
29=> _progress.ProgressTracker.AddItemsAsync(count, cancellationToken);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
41=> _progress.ProgressTracker.AddItemsAsync(count, cancellationToken);
Shared\Utilities\IStreamingProgressTrackerExtensions.cs (1)
19await progressTracker.AddItemsAsync(1, cancellationToken).ConfigureAwait(false);