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

1 2

  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api_browsertest.cc 46 AutocompleteMatch match = result.match_at(0);
50 match = result.match_at(1);
71 EXPECT_EQ(ASCIIToUTF16("keyword"), result.match_at(0).keyword);
73 result.match_at(0).fill_into_edit);
75 result.match_at(0).type);
77 result.match_at(0).provider->type());
78 EXPECT_EQ(ASCIIToUTF16("keyword"), result.match_at(1).keyword);
80 result.match_at(1).fill_into_edit);
82 result.match_at(1).provider->type());
83 EXPECT_EQ(ASCIIToUTF16("keyword"), result.match_at(2).keyword)
    [all...]
omnibox_api_testbase.h 50 AutocompleteMatch match = result.match_at(i);
  /external/chromium/chrome/browser/extensions/
extension_omnibox_apitest.cc 42 AutocompleteMatch match = result.match_at(i);
118 AutocompleteMatch match = result.match_at(0);
122 match = result.match_at(1);
143 ASSERT_TRUE(result.match_at(0).template_url);
145 result.match_at(0).fill_into_edit);
147 result.match_at(1).fill_into_edit);
149 result.match_at(2).fill_into_edit);
151 result.match_at(3).fill_into_edit);
155 EXPECT_EQ(description, result.match_at(1).contents);
156 ASSERT_EQ(6u, result.match_at(1).contents_class.size())
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_result_unittest.cc 282 EXPECT_TRUE(result.match_at(0)->destination_url.is_empty());
283 EXPECT_EQ(1300, result.match_at(0)->relevance);
284 EXPECT_TRUE(result.match_at(1)->destination_url.is_empty());
285 EXPECT_EQ(1200, result.match_at(1)->relevance);
286 EXPECT_TRUE(result.match_at(2)->destination_url.is_empty());
287 EXPECT_EQ(1100, result.match_at(2)->relevance);
288 EXPECT_EQ("http://b/", result.match_at(3)->destination_url.spec());
289 EXPECT_EQ(1000, result.match_at(3)->relevance);
327 result.match_at(0)->destination_url.spec());
328 EXPECT_EQ(1300, result.match_at(0)->relevance)
    [all...]
autocomplete_result.h 96 const AutocompleteMatch& match_at(size_t index) const;
97 AutocompleteMatch* match_at(size_t index);
autocomplete_result.cc 190 (comparing_object.GetDemotedRelevance(*match_at(num_matches)) > 0);
250 const AutocompleteMatch& AutocompleteResult::match_at(size_t index) const { function in class:AutocompleteResult
255 AutocompleteMatch* AutocompleteResult::match_at(size_t index) { function in class:AutocompleteResult
268 if (empty() || !match_at(0).IsVerbatimType())
270 return !(size() > 1) || !match_at(1).IsVerbatimType();
autocomplete_provider_unittest.cc 369 result.match_at(j)->associated_keyword.get() != NULL);
397 result_.match_at(i)->search_terms_args->assisted_query_stats);
481 result_.match_at(i)->search_terms_args->assisted_query_stats.empty());
486 result_.match_at(i)->search_terms_args->assisted_query_stats.empty());
520 result_.match_at(0)->destination_url.possibly_invalid_spec());
522 result_.match_at(1)->destination_url.possibly_invalid_spec());
autocomplete_browsertest.cc 42 AutocompleteMatch match = result.match_at(i);
153 AutocompleteMatch match = result.match_at(0);
search_provider_unittest.cc     [all...]
autocomplete_controller.cc 599 AutocompleteMatch* match = result->match_at(index);
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_popup_model.cc 75 const AutocompleteMatch& match = result.match_at(line);
99 GURL current_destination(result.match_at(selected_line_).destination_url);
152 const AutocompleteMatch& match = result().match_at(selected_line_);
169 const AutocompleteMatch& match = result().match_at(selected_line_);
omnibox_controller.cc 54 SearchProvider::ShouldPrefetch(result.match_at(1))) ?
55 &result.match_at(1) : NULL;
omnibox_view_browsertest.cc     [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_model.cc 73 const AutocompleteMatch& match = result.match_at(line);
95 GURL current_destination(result.match_at(selected_line_).destination_url);
203 const AutocompleteMatch& match = result().match_at(selected_line_);
autocomplete_browsertest.cc 39 AutocompleteMatch match = result.match_at(i);
122 AutocompleteMatch match = result.match_at(0);
autocomplete_edit_view_browsertest.cc     [all...]
autocomplete.h 537 const AutocompleteMatch& match_at(size_t index) const;
    [all...]
autocomplete_popup_view_gtk.cc 475 const AutocompleteMatch& match = model_->result().match_at(line);
610 const AutocompleteMatch& match = result.match_at(i);
autocomplete_edit.cc 515 current_match : result().match_at(index);
    [all...]
  /external/chromium/chrome/browser/
omnibox_search_hint.cc 193 log->result.match_at(log->selected_index).type;
  /external/chromium_org/chrome/browser/ui/gtk/omnibox/
omnibox_popup_view_gtk.cc 494 omnibox_view_->OpenMatch(GetResult().match_at(line), disposition, GURL(),
546 if (result.match_at(index).associated_keyword.get() &&
549 *match = result.match_at(index).associated_keyword.get();
554 *match = &result.match_at(index);
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_popup_contents_view.cc 453 return model_->result().match_at(index);
499 omnibox_view_->OpenMatch(model_->result().match_at(index), disposition,
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 562 return model_->result().match_at(index);
622 const AutocompleteMatch& match = model_->result().match_at(index);
  /external/chromium_org/chrome/browser/ui/webui/options/
options_ui.cc 362 const AutocompleteMatch& match = result.match_at(i);
  /external/chromium/chrome/browser/ui/webui/options/
browser_options_handler.cc 438 const AutocompleteMatch& match = result.match_at(i);

Completed in 850 milliseconds

1 2