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

  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_browsertest.cc 474 ASSERT_TRUE(edit_view->model()->is_keyword_hint());
479 ASSERT_FALSE(edit_view->model()->is_keyword_hint());
484 ASSERT_TRUE(edit_view->model()->is_keyword_hint());
489 ASSERT_FALSE(edit_view->model()->is_keyword_hint());
499 ASSERT_FALSE(edit_view->model()->is_keyword_hint());
516 ASSERT_FALSE(edit_view->model()->is_keyword_hint());
717 ASSERT_TRUE(edit_view->model()->is_keyword_hint());
723 ASSERT_FALSE(edit_view->model()->is_keyword_hint());
729 ASSERT_TRUE(edit_view->model()->is_keyword_hint());
738 ASSERT_FALSE(edit_view->model()->is_keyword_hint());
    [all...]
autocomplete_edit.h 94 bool is_keyword_hint);
100 const bool is_keyword_hint; member in struct:AutocompleteEditModel::State
263 bool is_keyword_hint() const { return is_keyword_hint_; } function in class:AutocompleteEditModel
312 // |keyword| is the keyword to show a hint for if |is_keyword_hint| is true,
313 // or the currently selected keyword if |is_keyword_hint| is false (see
319 bool is_keyword_hint);
autocomplete_popup_model.cc 104 const bool is_keyword_hint = GetKeywordForMatch(match, &keyword); local
113 keyword, is_keyword_hint);
116 keyword, is_keyword_hint);
autocomplete_edit.cc 51 bool is_keyword_hint)
55 is_keyword_hint(is_keyword_hint) {
124 is_keyword_hint_ = state.is_keyword_hint;
679 bool is_keyword_hint) {
682 ((is_keyword_hint_ != is_keyword_hint) && !keyword.empty());
685 is_keyword_hint_ = is_keyword_hint;
835 bool is_keyword_hint = false; local
    [all...]
autocomplete_edit_view_views.cc 204 if (model_->is_keyword_hint()) {
576 if (model_->is_keyword_hint() || model_->keyword().empty())
autocomplete_popup_view_gtk.cc 481 const bool is_keyword_hint = model_->GetKeywordForMatch(match, &keyword); local
483 is_keyword_hint ? string16() : keyword);
autocomplete_edit_view_gtk.cc     [all...]
autocomplete_edit_view_win.cc     [all...]
  /external/chromium/chrome/browser/ui/views/location_bar/
location_bar_view.cc 476 const bool is_keyword_hint(location_entry_->model()->is_keyword_hint());
477 const bool show_selected_keyword = !keyword.empty() && !is_keyword_hint;
537 const bool show_keyword_hint = !keyword.empty() && is_keyword_hint;
    [all...]
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 628 const bool is_keyword_hint = model_->GetKeywordForMatch(match, &keyword); local
630 is_keyword_hint ? string16() : keyword);
  /external/chromium/chrome/browser/ui/gtk/
location_bar_view_gtk.cc 496 const bool is_keyword_hint = location_entry_->model()->is_keyword_hint(); local
497 show_selected_keyword_ = !keyword.empty() && !is_keyword_hint;
498 show_keyword_hint_ = !keyword.empty() && is_keyword_hint;
    [all...]

Completed in 185 milliseconds