7 implementations of AddItemsAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
FindUsages\BufferedFindUsagesContext.cs (1)
124async ValueTask IStreamingProgressTracker.AddItemsAsync(int count, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (1)
ValueTracking\ValueTracker.FindReferencesProgress.cs (1)
26public 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)
190public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken) 242public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
34public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken) => default;
Shared\Utilities\StreamingProgressTracker.cs (1)
19public ValueTask AddItemsAsync(int count, CancellationToken cancellationToken)
12 references to AddItemsAsync
Microsoft.CodeAnalysis.EditorFeatures (4)
ExternalAccess\VSTypeScript\VSTypeScriptFindUsagesService.cs (1)
60=> _progressTracker.AddItemsAsync(count, cancellationToken);
ExternalAccess\VSTypeScript\VSTypeScriptStreamingProgressTracker.cs (1)
17=> _progressTracker.AddItemsAsync(count, cancellationToken);
FindUsages\BufferedFindUsagesContext.cs (2)
98await presenterContext.ProgressTracker.AddItemsAsync(_state.TotalItemCount, cancellationToken).ConfigureAwait(false); 129await _streamingPresenterContext.ProgressTracker.AddItemsAsync(count, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (2)
FindUsages\IRemoteFindUsagesService.cs (1)
98=> _context.ProgressTracker.AddItemsAsync(count, cancellationToken);
NavigateTo\NavigateToSearcher.cs (1)
121await _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)
113await _progressTracker.AddItemsAsync(projectsToSearch.Length, cancellationToken).ConfigureAwait(false);
FindSymbols\SymbolFinder.FindLiteralsServerCallback.cs (1)
19=> progress.ProgressTracker.AddItemsAsync(count, cancellationToken);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
29=> progress.ProgressTracker.AddItemsAsync(count, cancellationToken);
Shared\Utilities\IStreamingProgressTrackerExtensions.cs (1)
19await progressTracker.AddItemsAsync(1, cancellationToken).ConfigureAwait(false);
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchQueryExecutor.cs (1)
29=> presenterContext.ProgressTracker.AddItemsAsync(itemCount, cancellationToken);