Home
last modified time | relevance | path

Searched refs:provider_max_matches_ (Results 1 – 11 of 11) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/components/omnibox/browser/
H A Dautocomplete_provider.h234 size_t provider_max_matches() const { return provider_max_matches_; } in provider_max_matches()
335 const size_t provider_max_matches_; variable
H A Dshortcuts_provider.cc216 std::min(provider_max_matches_, shortcut_matches.size()), in GetMatches()
225 if (shortcut_matches.size() > provider_max_matches_) { in GetMatches()
226 shortcut_matches.erase(shortcut_matches.begin() + provider_max_matches_, in GetMatches()
H A Dbookmark_provider.cc103 size_t num_matches = std::min(matches_.size(), provider_max_matches_); in DoAutocomplete()
H A Dhistory_quick_provider.cc83 provider_max_matches_); in DoAutocomplete()
H A Dautocomplete_provider.cc32 : provider_max_matches_(OmniboxFieldTrial::GetProviderMaxMatches(type)), in AutocompleteProvider()
H A Dbuiltin_provider.cc100 (i != builtins_.end()) && (matches_.size() < provider_max_matches_); in Start()
H A Don_device_head_provider.cc255 model_filename_, provider_max_matches_, std::move(params)), in DoSearch()
H A Ddocument_provider.cc785 if (matches.size() < provider_max_matches_) { in ParseDocumentSearchResults()
859 if (matches.size() >= provider_max_matches_) in ParseDocumentSearchResults()
H A Dhistory_url_provider.cc765 db->AutocompleteForPrefix(prefixed_input, provider_max_matches_ * 2, in DoAutocomplete()
866 provider_max_matches_ + (params->exact_suggestion_is_in_history ? 1 : 0); in DoAutocomplete()
H A Dkeyword_provider.cc360 (i != matches.end()) && (matches_.size() < provider_max_matches_); in Start()
H A Dsearch_provider.cc674 int num_matches = provider_max_matches_ * 5; in DoHistoryQuery()
1132 if ((num_suggestions >= provider_max_matches_) && in ConvertResultsToAutocompleteMatches()