/external/chromium_org/chrome/browser/ui/views/ |
cookie_info_view.cc | 123 views::Textfield* text_field) { 126 layout->AddView(text_field, 2, 1, views::GridLayout::FILL, 131 text_field->SetReadOnly(true); 132 text_field->SetBorder(views::Border::NullBorder()); 134 text_field->SetBackgroundColor(GetNativeTheme()->GetSystemColor( 136 text_field->SetTextColor(SkColorSetRGB(0x78, 0x78, 0x78));
|
edit_search_engine_dialog.cc | 237 Textfield* text_field = new Textfield(); local 238 text_field->SetText(text); 239 text_field->set_controller(this); 240 return text_field;
|
/external/chromium_org/ui/views/focus/ |
focus_traversal_unittest.cc | 313 Textfield* text_field = new Textfield(); local 314 text_field->set_id(kAppleTextfieldID); 315 left_container_->AddChildView(text_field); 316 text_field->SetBounds(label_x + label_width + 5, y, 326 text_field = new Textfield(); 327 text_field->set_id(kOrangeTextfieldID); 328 left_container_->AddChildView(text_field); 329 text_field->SetBounds(label_x + label_width + 5, y, 339 text_field = new Textfield(); 340 text_field->set_id(kBananaTextfieldID) [all...] |
/external/chromium_org/mojo/examples/browser/ |
browser.cc | 38 views::View* text_field = host->child_at(0); variable 39 gfx::Size ps = text_field->GetPreferredSize(); 40 text_field->SetBoundsRect(gfx::Rect(host->width(), ps.height()));
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
javascript_app_modal_dialog_cocoa.mm | 108 bool text_field = false; 130 text_field = true; 145 if (text_field) { 219 NSTextField* text_field = base::mac::ObjCCast<NSTextField>(view); 220 if ([[text_field stringValue] isEqualTo:message_text]) 221 message_text_field = text_field; 222 else if ([[text_field stringValue] isEqualTo:informative_text]) 223 informative_text_field = text_field;
|
/external/chromium_org/content/shell/browser/ |
shell_javascript_dialog_mac.mm | 97 bool text_field = message_type == JAVASCRIPT_MESSAGE_TYPE_PROMPT; 107 if (text_field) {
|
/external/chromium_org/content/child/ |
webfallbackthemeengine_impl.cc | 115 native_theme_extra_params->text_field.is_text_area = 117 native_theme_extra_params->text_field.is_listbox = 119 native_theme_extra_params->text_field.background_color =
|
webthemeengine_impl_android.cc | 108 native_theme_extra_params->text_field.is_text_area = 110 native_theme_extra_params->text_field.is_listbox = 112 native_theme_extra_params->text_field.background_color =
|
webthemeengine_impl_default.cc | 115 native_theme_extra_params->text_field.is_text_area = 117 native_theme_extra_params->text_field.is_listbox = 119 native_theme_extra_params->text_field.background_color =
|
/development/apps/launchperf/res/layout/ |
simple_layout.xml | 75 <TextView android:id="@+id/text_field"
|
/external/chromium_org/chrome/browser/ui/cocoa/website_settings/ |
website_settings_bubble_controller_unittest.mm | 191 NSTextField* text_field = static_cast<NSTextField*>(view); 192 if ([[text_field stringValue] isEqual:text] == desired_result) 193 return text_field;
|
/external/chromium_org/ui/accessibility/ |
ax_enums.idl | 155 text_field,
|
/external/chromium_org/ui/native_theme/ |
native_theme.h | 211 TextFieldExtraParams text_field; member in union:ui::NativeTheme::ExtraParams
|
native_theme_base.cc | 267 PaintTextField(canvas, state, rect, extra.text_field); [all...] |
native_theme_win.cc | 484 PaintTextField(hdc, part, state, rect, extra.text_field); [all...] |
/external/protobuf/src/google/protobuf/ |
message.h | 86 // FieldDescriptor* text_field = descriptor->FindFieldByName("text"); 87 // assert(text_field != NULL); 88 // assert(text_field->type() == FieldDescriptor::TYPE_STRING); 89 // assert(text_field->label() == FieldDescriptor::TYPE_OPTIONAL); 100 // assert(reflection->GetString(foo, text_field) == "Hello World!"); [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
message.h | 86 // const FieldDescriptor* text_field = descriptor->FindFieldByName("text"); 87 // assert(text_field != NULL); 88 // assert(text_field->type() == FieldDescriptor::TYPE_STRING); 89 // assert(text_field->label() == FieldDescriptor::LABEL_OPTIONAL); 101 // assert(reflection->GetString(foo, text_field) == "Hello World!"); [all...] |