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

  /external/chromium_org/content/shell/
shell_javascript_dialog_gtk.cc 90 GtkWidget* text_box = gtk_entry_new(); local
91 gtk_entry_set_text(GTK_ENTRY(text_box),
93 gtk_box_pack_start(GTK_BOX(content_area), text_box, TRUE, TRUE, 0); local
94 g_object_set_data(G_OBJECT(gtk_dialog_), kPromptTextId, text_box); local
95 gtk_entry_set_activates_default(GTK_ENTRY(text_box), TRUE);
  /external/chromium/chrome/browser/ui/gtk/
js_modal_dialog_gtk.cc 100 GtkWidget* text_box = gtk_entry_new(); local
101 gtk_entry_set_text(GTK_ENTRY(text_box),
103 gtk_box_pack_start(GTK_BOX(contents_vbox), text_box, TRUE, TRUE, 0); local
104 g_object_set_data(G_OBJECT(gtk_dialog_), kPromptTextId, text_box); local
105 gtk_entry_set_activates_default(GTK_ENTRY(text_box), TRUE);
  /external/chromium_org/chrome/browser/ui/gtk/
javascript_app_modal_dialog_gtk.cc 104 GtkWidget* text_box = gtk_entry_new(); local
105 gtk_entry_set_text(GTK_ENTRY(text_box),
107 gtk_box_pack_start(GTK_BOX(content_area), text_box, TRUE, TRUE, 0); local
108 g_object_set_data(G_OBJECT(gtk_dialog_), kPromptTextId, text_box); local
109 gtk_entry_set_activates_default(GTK_ENTRY(text_box), TRUE);
validation_message_bubble_gtk.cc 101 GtkWidget* text_box = gtk_vbox_new(FALSE, kTextMargin); local
106 GTK_BOX(text_box), gtk_util::LeftAlignMisc(label), TRUE, TRUE, 0);
116 GTK_BOX(text_box), gtk_util::LeftAlignMisc(sub_label), TRUE, TRUE, 0);
118 gtk_container_add(GTK_CONTAINER(icon_text_box), text_box); local
  /external/chromium/chrome/browser/chromeos/login/
wizard_accessibility_handler.cc 162 const AccessibilityTextBoxInfo* text_box = local
164 previous_text_value_ = GetTextBoxValue(text_box);
165 previous_text_selection_start_ = text_box->selection_start();
166 previous_text_selection_end_ = text_box->selection_end();
277 const AccessibilityTextBoxInfo* text_box = local
283 std::string new_value = GetTextBoxValue(text_box);
284 int new_start = text_box->selection_start();
285 int new_end = text_box->selection_end();
  /external/chromium/chrome/browser/ui/views/
js_modal_dialog_views.cc 146 if (message_box_view_->text_box())
147 return message_box_view_->text_box();
  /external/chromium_org/chrome/browser/ui/views/
javascript_app_modal_dialog_views.cc 153 if (message_box_view_->text_box())
154 return message_box_view_->text_box();
  /external/chromium_org/ui/views/controls/
message_box_view.h 60 views::Textfield* text_box() { return prompt_field_; } function in class:views::MessageBoxView
  /external/chromium_org/chrome/test/webdriver/test/
chromedriver_tests.py 680 text_box = self._driver.find_element_by_tag_name('input')
681 text_box.send_keys('hi')
682 self.assertEquals('hi', text_box.get_attribute('value'))
    [all...]

Completed in 161 milliseconds