HomeSort by relevance Sort by last modified time
    Searched refs:match_at (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api_browsertest.cc 50 AutocompleteMatch match = result.match_at(0);
54 match = result.match_at(1);
74 EXPECT_EQ(ASCIIToUTF16("keyword"), result.match_at(0).keyword);
76 result.match_at(0).fill_into_edit);
78 result.match_at(0).type);
80 result.match_at(0).provider->type());
81 EXPECT_EQ(ASCIIToUTF16("keyword"), result.match_at(1).keyword);
83 result.match_at(1).fill_into_edit);
85 result.match_at(1).provider->type());
86 EXPECT_EQ(ASCIIToUTF16("keyword"), result.match_at(2).keyword)
    [all...]
omnibox_api_testbase.h 50 AutocompleteMatch match = result.match_at(i);
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_result_unittest.cc 309 EXPECT_TRUE(result.match_at(0)->destination_url.is_empty());
310 EXPECT_EQ(1300, result.match_at(0)->relevance);
311 EXPECT_TRUE(result.match_at(1)->destination_url.is_empty());
312 EXPECT_EQ(1200, result.match_at(1)->relevance);
313 EXPECT_TRUE(result.match_at(2)->destination_url.is_empty());
314 EXPECT_EQ(1100, result.match_at(2)->relevance);
315 EXPECT_EQ("http://b/", result.match_at(3)->destination_url.spec());
316 EXPECT_EQ(1000, result.match_at(3)->relevance);
354 result.match_at(0)->destination_url.spec());
355 EXPECT_EQ(1300, result.match_at(0)->relevance)
    [all...]
autocomplete_result.h 92 const AutocompleteMatch& match_at(size_t index) const;
93 AutocompleteMatch* match_at(size_t index);
autocomplete_provider_unittest.cc 372 result.match_at(j)->associated_keyword.get() != NULL);
400 result_.match_at(i)->search_terms_args->assisted_query_stats);
483 result_.match_at(i)->search_terms_args->assisted_query_stats.empty());
488 result_.match_at(i)->search_terms_args->assisted_query_stats.empty());
522 result_.match_at(0)->destination_url.possibly_invalid_spec());
524 result_.match_at(1)->destination_url.possibly_invalid_spec());
autocomplete_result.cc 237 (comparing_object.GetDemotedRelevance(*match_at(num_matches)) > 0);
307 const AutocompleteMatch& AutocompleteResult::match_at(size_t index) const { function in class:AutocompleteResult
312 AutocompleteMatch* AutocompleteResult::match_at(size_t index) { function in class:AutocompleteResult
323 if (empty() || !match_at(0).IsVerbatimType())
search_provider_unittest.cc     [all...]
autocomplete_browsertest.cc 43 AutocompleteMatch match = result.match_at(i);
153 AutocompleteMatch match = result.match_at(0);
autocomplete_controller.cc 599 AutocompleteMatch* match = result->match_at(index);
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_controller.cc 63 SearchProvider::ShouldPrefetch(result.match_at(1)))
64 return &result.match_at(1);
omnibox_popup_model.cc 126 const AutocompleteMatch& match = result.match_at(line);
150 GURL current_destination(result.match_at(selected_line_).destination_url);
203 const AutocompleteMatch& match = result().match_at(selected_line_);
220 const AutocompleteMatch& match = result().match_at(selected_line_);
omnibox_view_browsertest.cc     [all...]
omnibox_edit_model.cc     [all...]
  /external/chromium_org/chrome/browser/android/omnibox/
autocomplete_controller_android.cc 248 const AutocompleteMatch& match = result.match_at(selected_index);
265 autocomplete_controller_->result().match_at(selected_index));
379 BuildOmniboxSuggestion(env, autocomplete_result.match_at(i));
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_popup_contents_view.cc 449 return model_->result().match_at(index);
495 omnibox_view_->OpenMatch(model_->result().match_at(index), disposition,
  /external/chromium_org/chrome/browser/ui/webui/options/
options_ui.cc 374 const AutocompleteMatch& match = result.match_at(i);
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 362 const AutocompleteMatch& match = log.result.match_at(log.selected_index);

Completed in 1145 milliseconds