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

1 2

  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_view.cc 106 void OmniboxView::SetUserText(const string16& text) {
107 SetUserText(text, text, true);
110 void OmniboxView::SetUserText(const string16& text,
114 model_->SetUserText(text);
omnibox_view.h 104 void SetUserText(const string16& text);
105 virtual void SetUserText(const string16& text,
omnibox_view_browsertest.cc 406 omnibox_view->SetUserText(ASCIIToUTF16("Hello world"));
466 omnibox_view->SetUserText(ASCIIToUTF16("Hello world"));
590 omnibox_view->SetUserText(ASCIIToUTF16(chrome::kChromeUIHistoryURL));
818 omnibox_view->SetUserText(string16());
    [all...]
omnibox_edit_model.h 149 void SetUserText(const string16& text);
omnibox_edit_unittest.cc 34 virtual void SetUserText(const string16& text,
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view.h 81 virtual void SetUserText(const string16& text) = 0;
82 virtual void SetUserText(const string16& text,
autocomplete_browsertest.cc 78 location_bar->location_entry()->SetUserText(ASCIIToUTF16("chrome"));
91 location_bar->location_entry()->SetUserText(ASCIIToUTF16("chrome"));
146 location_bar->location_entry()->SetUserText(string16());
181 location_bar->location_entry()->SetUserText(ASCIIToUTF16("foo"));
199 location_bar->location_entry()->SetUserText(ASCIIToUTF16("?"));
217 location_bar->location_entry()->SetUserText(ASCIIToUTF16("?foo"));
234 location_bar->location_entry()->SetUserText(ASCIIToUTF16(" ?foo"));
autocomplete_edit_view_mac.h 56 virtual void SetUserText(const string16& text);
57 virtual void SetUserText(const string16& text,
autocomplete_edit_unittest.cc 32 virtual void SetUserText(const string16& text) {}
33 virtual void SetUserText(const string16& text,
autocomplete_edit_view_views.h 91 virtual void SetUserText(const string16& text) OVERRIDE;
92 virtual void SetUserText(const string16& text,
autocomplete_edit_view_views.cc 354 void AutocompleteEditViewViews::SetUserText(const string16& text) {
355 SetUserText(text, text, true);
358 void AutocompleteEditViewViews::SetUserText(const string16& text,
361 model_->SetUserText(text);
379 SetUserText(ASCIIToUTF16("?"));
autocomplete_edit_view_browsertest.cc 387 edit_view->SetUserText(ASCIIToUTF16("Hello world"));
446 edit_view->SetUserText(ASCIIToUTF16("Hello world"));
565 edit_view->SetUserText(ASCIIToUTF16(chrome::kChromeUIHistoryURL));
790 edit_view->SetUserText(string16());
829 edit_view->SetUserText(string16());
    [all...]
autocomplete_edit_view_gtk.h 111 virtual void SetUserText(const string16& text);
112 virtual void SetUserText(const string16& text,
523 // Changes caused by function calls like SetUserText() should not affect this
autocomplete_edit_view_win.h 106 virtual void SetUserText(const string16& text);
107 virtual void SetUserText(const string16& text,
autocomplete_edit.h 185 void SetUserText(const string16& text);
autocomplete_edit_view_win.cc 643 void AutocompleteEditViewWin::SetUserText(const string16& text) {
644 SetUserText(text, text, true);
647 void AutocompleteEditViewWin::SetUserText(const string16& text,
651 model_->SetUserText(text);
669 SetUserText(L"?");
    [all...]
autocomplete_edit_view_gtk.cc 541 void AutocompleteEditViewGtk::SetUserText(const string16& text) {
542 SetUserText(text, text, true);
545 void AutocompleteEditViewGtk::SetUserText(const string16& text,
548 model_->SetUserText(text);
566 SetUserText(ASCIIToUTF16("?"));
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api_interactive_test.cc 29 omnibox_view->SetUserText(ASCIIToUTF16("keyword comman"));
omnibox_api_browsertest.cc 142 omnibox_view->SetUserText(ASCIIToUTF16("keyword command"));
163 omnibox_view->SetUserText(ASCIIToUTF16("keyword command"));
178 omnibox_view->SetUserText(ASCIIToUTF16("keyword newtab"));
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_browsertest.cc 91 location_entry->SetUserText(ASCIIToUTF16("chrome"));
103 location_entry->SetUserText(ASCIIToUTF16("chrome"));
184 location_entry->SetUserText(string16());
225 location_entry->SetUserText(ASCIIToUTF16("foo"));
242 location_entry->SetUserText(ASCIIToUTF16("?"));
259 location_entry->SetUserText(ASCIIToUTF16("?foo"));
275 location_entry->SetUserText(ASCIIToUTF16(" ?foo"));
  /external/chromium/chrome/browser/instant/
instant_browsertest.cc 90 location_bar_->location_entry()->SetUserText(ASCIIToUTF16("d"));
122 location_bar_->location_entry()->SetUserText(UTF8ToUTF16(text));
464 location_bar_->location_entry()->SetUserText(ASCIIToUTF16("def"));
496 location_bar_->location_entry()->SetUserText(ASCIIToUTF16("defg"));
533 location_bar_->location_entry()->SetUserText(ASCIIToUTF16("d"));
583 location_bar_->location_entry()->SetUserText(ASCIIToUTF16("d"));
635 location_bar_->location_entry()->SetUserText(UTF8ToUTF16(url.spec()));
650 location_bar_->location_entry()->SetUserText(UTF8ToUTF16(url2.spec()));
782 location_bar_->location_entry()->SetUserText(UTF8ToUTF16(url.spec()));
786 location_bar_->location_entry()->SetUserText(UTF8ToUTF16(url.spec()))
    [all...]
  /external/chromium/chrome/browser/
omnibox_search_hint.cc 213 edit_view->SetUserText(
  /external/chromium_org/chrome/browser/ui/search/
instant_test_utils.cc 108 omnibox()->SetUserText(UTF8ToUTF16(text));
  /external/chromium_org/chrome/browser/ui/
browser_instant_controller.cc 234 omnibox_view->SetUserText(text_to_paste);
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_view_win.h 85 virtual void SetUserText(const string16& text,

Completed in 144 milliseconds

1 2