Searched defs:checkbox (Results 1 - 6 of 6) sorted by relevance

/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win_unittest.cc80 WebAccessibility checkbox; local
81 checkbox.id = 3;
82 checkbox.name = L"Checkbox";
83 checkbox.role = WebAccessibility::ROLE_CHECKBOX;
84 checkbox.state = 0;
92 root.children.push_back(checkbox);
H A Drenderer_accessibility_browsertest.cc100 "<body><input type='button' value='push' /><input type='checkbox' />"
141 const WebAccessibility& checkbox = body.children[1]; local
142 EXPECT_EQ(WebAccessibility::ROLE_CHECKBOX, checkbox.role);
144 "input", GetAttr(checkbox, WebAccessibility::ATTR_HTML_TAG).c_str());
147 GetAttr(checkbox, WebAccessibility::ATTR_DISPLAY).c_str());
148 ASSERT_EQ(1U, checkbox.html_attributes.size());
150 "type", UTF16ToUTF8(checkbox.html_attributes[0].first).c_str());
152 "checkbox", UTF16ToUTF8(checkbox.html_attributes[0].second).c_str());
H A Dbrowser_accessibility_manager_unittest.cc66 WebAccessibility checkbox; local
67 checkbox.id = 3;
68 checkbox.name = UTF8ToUTF16("Checkbox");
69 checkbox.role = WebAccessibility::ROLE_CHECKBOX;
70 checkbox.state = 0;
78 root.children.push_back(checkbox);
/external/chromium/chrome/browser/ui/views/
H A Dcreate_application_shortcut_view.cc31 #include "views/controls/button/checkbox.h"
390 views::Checkbox* checkbox = new views::Checkbox(text); local
391 checkbox->SetChecked(checked);
392 checkbox->set_listener(this);
393 return checkbox;
408 // When no checkbox is checked we should not have the action button enabled.
/external/chromium/chrome/browser/chromeos/login/
H A Deula_view.cc40 #include "views/controls/button/checkbox.h"
77 explicit EULANativeCheckboxGtk(views::Checkbox* checkbox) argument
78 : views::NativeCheckboxGtk(checkbox) {
441 // Set tooltip for usage statistics checkbox if the metric is unmanaged.
/external/webkit/Source/WebCore/html/
H A DInputType.cpp81 map->add(InputTypeNames::checkbox(), CheckboxInputType::create);
661 const AtomicString& checkbox() function in namespace:WebCore::InputTypeNames
663 DEFINE_STATIC_LOCAL(AtomicString, name, ("checkbox"));

Completed in 131 milliseconds