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

/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dmedia_gallery_checkbox_view.h23 // A view composed of a checkbox, optional folder icon button, and secondary
38 views::Checkbox* checkbox() { return checkbox_; } function in class:MediaGalleryCheckboxView
H A Dmedia_galleries_dialog_views_unittest.cc12 #include "ui/views/controls/button/checkbox.h"
79 EXPECT_TRUE(checkbox_view1->checkbox()->checked());
82 EXPECT_FALSE(checkbox_view2->checkbox()->checked());
95 views::Checkbox* checkbox = dialog.checkbox_map_[1]->checkbox(); local
96 EXPECT_TRUE(checkbox->checked());
100 checkbox->SetChecked(false);
101 dialog.ButtonPressed(checkbox, dummy_event);
104 checkbox->SetChecked(true);
105 dialog.ButtonPressed(checkbox, dummy_even
[all...]
H A Dmedia_galleries_dialog_views.cc17 #include "ui/views/controls/button/checkbox.h"
192 views::Checkbox* checkbox = iter->second->checkbox(); local
193 checkbox->SetChecked(gallery.selected);
194 checkbox->SetText(gallery.pref_info.GetGalleryDisplayName());
195 checkbox->SetTooltipText(gallery.pref_info.GetGalleryTooltip());
206 gallery_view->checkbox()->SetChecked(gallery.selected);
282 if (sender == iter->second->checkbox()) {
284 iter->second->checkbox()->checked());
H A Dextension_install_dialog_view.cc36 #include "ui/views/controls/button/checkbox.h"
158 views::Checkbox* checkbox = new views::Checkbox(base::string16()); local
159 checkbox->set_listener(listener);
162 layout->AddView(checkbox, 1, 1,
281 // |checkbox|permission1| |
283 // |checkbox|permission2| |
877 views::Checkbox* checkbox = static_cast<views::Checkbox*>(sender); local
878 if (checkbox->checked())
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dautofill_notification_controller.h29 // Optional checkbox.
46 @property(nonatomic, readonly) NSButton* checkbox; variable
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcommand_store.js391 findNext: 'checkbox',
488 findNext: 'checkbox',
689 'checkbox': {predicate: 'checkboxPredicate',
H A Dfocus_util.js50 'checkbox' : false,
H A Ddom_util.js39 'checkbox' : 'input_type_checkbox',
846 * current text of a text control. Does not return the state of a checkbox
892 case 'checkbox':
1366 'checkbox-true': 'checkbox_checked_state',
1367 'checkbox-false': 'checkbox_unchecked_state',
H A Daria_util.js43 'checkbox' : 'aria_role_checkbox',
685 case 'checkbox':
928 case 'checkbox':
/external/chromium_org/ui/accessibility/
H A Dax_tree_unittest.cc76 AXNodeData checkbox; local
77 checkbox.id = 3;
78 checkbox.role = AX_ROLE_CHECK_BOX;
79 checkbox.state = 0;
80 checkbox.location = gfx::Rect(20, 50, 200, 30);
85 initial_state.nodes.push_back(checkbox);
109 EXPECT_EQ(checkbox.id, checkbox_node->id());
110 EXPECT_EQ(checkbox.role, checkbox_node->data().role);
/external/chromium_org/ui/views/window/
H A Ddialog_delegate_unittest.cc9 #include "ui/views/controls/button/checkbox.h"
134 Checkbox* checkbox = new Checkbox(base::string16()); local
135 client_view->AddChildView(checkbox);
136 client_view->OnWillChangeFocus(button_1, checkbox);
143 client_view->OnWillChangeFocus(checkbox, button_2);
/external/chromium_org/content/browser/accessibility/
H A Dcross_platform_accessibility_browsertest.cc140 "<body><input type='button' value='push' /><input type='checkbox' />"
191 const ui::AXNode* checkbox = body->ChildAtIndex(1); local
192 EXPECT_EQ(ui::AX_ROLE_CHECK_BOX, checkbox->data().role);
194 "input", GetAttr(checkbox, ui::AX_ATTR_HTML_TAG).c_str());
197 GetAttr(checkbox, ui::AX_ATTR_DISPLAY).c_str());
198 ASSERT_EQ(1U, checkbox->data().html_attributes.size());
199 EXPECT_STREQ("type", checkbox->data().html_attributes[0].first.c_str());
200 EXPECT_STREQ("checkbox", checkbox->data().html_attributes[0].second.c_str());
H A Dbrowser_accessibility_manager_unittest.cc127 ui::AXNodeData checkbox; local
128 checkbox.id = 3;
129 checkbox.SetName("Checkbox");
130 checkbox.role = ui::AX_ROLE_CHECK_BOX;
131 checkbox.state = 0;
148 MakeAXTreeUpdate(root, button, checkbox),
162 MakeAXTreeUpdate(root, button, checkbox),
H A Dbrowser_accessibility_win_unittest.cc123 ui::AXNodeData checkbox; local
124 checkbox.id = 3;
125 checkbox.SetName("Checkbox");
126 checkbox.role = ui::AX_ROLE_CHECK_BOX;
127 checkbox.state = 0;
144 MakeAXTreeUpdate(root, button, checkbox),
155 MakeAXTreeUpdate(root, button, checkbox),
/external/chromium_org/ui/views/examples/
H A Dtext_example.cc11 #include "ui/views/controls/button/checkbox.h"
52 // Toggles bit |flag| on |flags| based on state of |checkbox|.
53 void SetFlagFromCheckbox(Checkbox* checkbox, int* flags, int flag) { argument
54 if (checkbox->checked())
122 Checkbox* checkbox = new Checkbox(base::ASCIIToUTF16(name)); local
123 checkbox->set_listener(this);
124 layout->AddView(checkbox);
125 return checkbox;
/external/chromium_org/chrome/browser/ui/views/
H A Dcreate_application_shortcut_view.cc45 #include "ui/views/controls/button/checkbox.h"
403 views::Checkbox* checkbox = new views::Checkbox(text); local
404 checkbox->SetChecked(checked);
405 checkbox->set_listener(this);
406 return checkbox;
422 // When no checkbox is checked we should not have the action button enabled.
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DBreakpointsSidebarPane.js99 var checkbox = element.createChild("input", "checkbox-elem");
100 checkbox.type = "checkbox";
101 checkbox.checked = breakpoint.enabled();
102 checkbox.addEventListener("click", this._breakpointCheckboxClicked.bind(this, breakpoint), false);
135 var breakpointItem = { element: element, checkbox: checkbox };
212 if (breakpoints[i].checkbox.checked)
370 var checkboxElement = element.createChild("input", "checkbox
[all...]
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_dialog_views.cc46 #include "ui/views/controls/button/checkbox.h"
248 scoped_ptr<views::Checkbox> checkbox(
250 checkbox->SetText(data.display_text());
251 checkbox->SetTextMultiLine(true);
252 checkbox->SetHorizontalAlignment(gfx::ALIGN_LEFT);
253 checkbox->SetTextColor(views::Button::STATE_NORMAL,
255 checkbox->SetTextColor(views::Button::STATE_HOVERED,
257 checkbox->SetChecked(data.checked());
258 checkbox->set_listener(this);
259 checkbox_ = checkbox
303 views::Checkbox* checkbox() { function in class:autofill::__anon5212::NotificationView
[all...]
/external/chromium_org/third_party/accessibility-audit/
H A Daxs_testing.js427 axs.constants.ARIA_ROLES = {alert:{namefrom:["author"], parent:["region"]}, alertdialog:{namefrom:["author"], namerequired:!0, parent:["alert", "dialog"]}, application:{namefrom:["author"], namerequired:!0, parent:["landmark"]}, article:{namefrom:["author"], parent:["document", "region"]}, banner:{namefrom:["author"], parent:["landmark"]}, button:{childpresentational:!0, namefrom:["contents", "author"], namerequired:!0, parent:["command"], properties:["aria-expanded", "aria-pressed"]}, checkbox:{namefrom:["contents",
433 parent:["section"]}, menu:{mustcontain:["group", "menuitemradio", "menuitem", "menuitemcheckbox"], namefrom:["author"], namerequired:!0, parent:["list", "select"]}, menubar:{namefrom:["author"], parent:["menu"]}, menuitem:{namefrom:["contents", "author"], namerequired:!0, parent:["command"]}, menuitemcheckbox:{namefrom:["contents", "author"], namerequired:!0, parent:["checkbox", "menuitem"]}, menuitemradio:{namefrom:["contents", "author"], namerequired:!0, parent:["menuitemcheckbox", "radio"]}, navigation:{namefrom:["author"],
434 parent:["landmark"]}, note:{namefrom:["author"], parent:["section"]}, option:{namefrom:["contents", "author"], namerequired:!0, parent:["input"], properties:["aria-checked", "aria-posinset", "aria-selected", "aria-setsize"]}, presentation:{parent:["structure"]}, progressbar:{childpresentational:!0, namefrom:["author"], namerequired:!0, parent:["range"]}, radio:{namefrom:["contents", "author"], namerequired:!0, parent:["checkbox", "option"]}, radiogroup:{mustcontain:["radio"], namefrom:["author"],
485 axs.constants.WIDGET_ROLE_TO_NAME = {alert:"aria_role_alert", alertdialog:"aria_role_alertdialog", button:"aria_role_button", checkbox:"aria_role_checkbox", columnheader:"aria_role_columnheader", combobox:"aria_role_combobox", dialog:"aria_role_dialog", grid:"aria_role_grid", gridcell:"aria_role_gridcell", link:"aria_role_link", listbox:"aria_role_listbox", log:"aria_role_log", marquee:"aria_role_marquee", menu:"aria_role_menu", menubar:"aria_role_menubar", menuitem:"aria_role_menuitem", menuitemcheckbox:"aria_role_menuitemcheckbox",
492 axs.constants.INPUT_TYPE_TO_INFORMATION_TABLE_MSG = {button:"input_type_button", checkbox:"input_type_checkbox", color:"input_type_color", datetime:"input_type_datetime", "datetime-local":"input_type_datetime_local", date:"input_type_date", email:"input_type_email", file:"input_type_file", image:"input_type_image", month:"input_type_month", number:"input_type_number", password:"input_type_password", radio:"input_type_radio", range:"input_type_range", reset:"input_type_reset", search:"input_type_search",
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromeOptionsScript.js66 nodeList:"landmark",disallowContinuation:!0,msgId:"show_landmarks_list",category:"overview"},showLinksList:{announce:!1,nodeList:"link",disallowContinuation:!0,msgId:"show_links_list",category:"overview"},showTablesList:{announce:!1,nodeList:"table",disallowContinuation:!0,msgId:"show_tables_list",category:"overview"},nextArticle:{forward:!0,findNext:"article"},nextButton:{forward:!0,findNext:"button",msgId:"next_button",category:"jump_commands"},nextCheckbox:{forward:!0,findNext:"checkbox",msgId:"next_checkbox",
71 msgId:"previous_button",category:"jump_commands"},previousCheckbox:{backward:!0,findNext:"checkbox",msgId:"previous_checkbox",category:"jump_commands"},previousComboBox:{backward:!0,findNext:"combobox",msgId:"previous_combo_box",category:"jump_commands"},previousControl:{backward:!0,findNext:"control"},previousEditText:{backward:!0,findNext:"editText",msgId:"previous_edit_text",category:"jump_commands"},previousFormField:{backward:!0,findNext:"formField",msgId:"previous_form_field",category:"jump_commands"},
80 cvox.CommandStore.NODE_INFO_MAP={checkbox:{predicate:"checkboxPredicate",forwardError:"no_next_checkbox",backwardError:"no_previous_checkbox",typeMsg:"aria_role_checkbox"},radio:{predicate:"radioPredicate",forwardError:"no_next_radio_button",backwardError:"no_previous_radio_button",typeMsg:"aria_role_radio"},slider:{predicate:"sliderPredicate",forwardError:"no_next_slider",backwardError:"no_previous_slider",typeMsg:"aria_role_slider"},graphic:{predicate:"graphicPredicate",forwardError:"no_next_graphic",
705 cvox.AriaUtil.WIDGET_ROLE_TO_NAME={alert:"aria_role_alert",alertdialog:"aria_role_alertdialog",button:"aria_role_button",checkbox:"aria_role_checkbox",columnheader:"aria_role_columnheader",combobox:"aria_role_combobox",dialog:"aria_role_dialog",grid:"aria_role_grid",gridcell:"aria_role_gridcell",link:"aria_role_link",listbox:"aria_role_listbox",log:"aria_role_log",marquee:"aria_role_marquee",menu:"aria_role_menu",menubar:"aria_role_menubar",menuitem:"aria_role_menuitem",menuitemcheckbox:"aria_role_menuitemcheckbox",
724 cvox.AriaUtil.isControlWidget=function(a){if(a&&a.getAttribute)switch(a=cvox.AriaUtil.getRoleAttribute(a),a){case "button":case "checkbox":case "combobox":case "listbox":case "menu":case "menuitemcheckbox":case "menuitemradio":case "radio":case "slider":case "progressbar":case "scrollbar":case "spinbutton":case "tab":case "tablist":case "textbox":return!0}return!1};cvox.AriaUtil.isCompositeControl=function(a){if(a&&a.getAttribute)switch(a=cvox.AriaUtil.getRoleAttribute(a),a){case "combobox":case "grid":case "listbox":case "menu":case "menubar":case "radiogroup":case "tablist":case "tree":case "treegrid":return!0}return!1};
729 cvox.AriaUtil.getEarcon=function(a){if(!a||!a.getAttribute)return null;var b=cvox.AriaUtil.getRoleAttribute(a);switch(b){case "button":return cvox.AbstractEarcons.BUTTON;case "checkbox":case "radio":case "menuitemcheckbox":case "menuitemradio":return a=a.getAttribute("aria-checked"),"true"==a?cvox.AbstractEarcons.CHECK_ON:cvox.AbstractEarcons.CHECK_OFF;case "combobox":case "listbox":return cvox.AbstractEarcons.LISTBOX;case "textbox":return cvox.AbstractEarcons.EDITABLE_TEXT;case "listitem":return cvox.AbstractEarcons.BULLET;
730 case "link":return cvox.AbstractEarcons.LINK}return null};cvox.AriaUtil.getRoleAttribute=function(a){if(!a.getAttribute)return"";var b=a.getAttribute("role");a.hasAttribute("chromevoxoriginalrole")&&(b=a.getAttribute("chromevoxoriginalrole"));return b};cvox.AriaUtil.isMath=function(a){if(!a||!a.getAttribute)return!1;a=cvox.AriaUtil.getRoleAttribute(a);return"math"==a};cvox.DomPredicates={};cvox.DomPredicates.checkboxPredicate=function(a){for(var b=0;b<a.length;b++)if(a[b].getAttribute&&"checkbox"==a[b].getAttribute("role")||"INPUT"==a[b].tagName&&"checkbox"==a[b].type)return a[b];return null};cvox.DomPredicates.radioPredicate=function(a){for(var b=0;b<a.length;b++)if(a[b].getAttribute&&"radio"==a[b].getAttribute("role")||"INPUT"==a[b].tagName&&"radio"==a[b].type)return a[b];return null};
744 cvox.DomUtil.INPUT_TYPE_TO_INFORMATION_TABLE_MSG={button:"input_type_button",checkbox:"input_type_checkbox",color:"input_type_color",datetime:"input_type_datetime","datetime-local":"input_type_datetime_local",date:"input_type_date",email:"input_type_email",file:"input_type_file",image:"input_type_image",month:"input_type_month",number:"input_type_number",password:"input_type_password",radio:"input_type_radio",range:"input_type_range",reset:"input_type_reset",search:"input_type_search",submit:"input_type_submit",
767 HTMLInputElement)switch(a.type){case "hidden":case "image":case "submit":case "reset":case "button":case "checkbox"
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 5354 milliseconds