5 references to StartSearch
Microsoft.CodeAnalysis.EditorFeatures (5)
ExternalAccess\VSTypeScript\VSTypeScriptStreamingFindUsagesPresenterAccessor.cs (1)
24var (context, cancellationToken) = _underlyingObject.StartSearch(title, new StreamingFindUsagesPresenterOptions() { SupportsReferences = supportsReferences });
GoOrFind\AbstractGoOrFindNavigationService.cs (1)
226var (presenterContext, presenterCancellationToken) = _streamingPresenter.StartSearch(DisplayName, GetStreamingPresenterOptions(document));
Host\IStreamingFindReferencesPresenter.cs (2)
46/// <see cref="IStreamingFindUsagesPresenter.StartSearch(string, StreamingFindUsagesPresenterOptions)"/> options. 134var (context, _) = presenter.StartSearch(title, StreamingFindUsagesPresenterOptions.Default);
Navigation\AbstractDefinitionLocationService.cs (1)
242var (context, _) = _streamingPresenter.StartSearch(title, new StreamingFindUsagesPresenterOptions(SupportsReferences: true));