HomeSort by relevance Sort by last modified time
    Searched full:checkboxes (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /external/chromium-trace/trace-viewer/src/tracing/
category_filter_dialog_test.js 21 var checkboxes = dlg.formEl_.getElementsByTagName('input');
22 assertEquals(3, checkboxes.length);
23 assertEquals('one', checkboxes[0].id);
24 assertEquals('one', checkboxes[0].value);
25 assertEquals(true, checkboxes[0].checked);
26 assertEquals('three', checkboxes[1].id);
27 assertEquals('three', checkboxes[1].value);
28 assertEquals(true, checkboxes[1].checked);
29 assertEquals('two', checkboxes[2].id);
30 assertEquals('two', checkboxes[2].value)
    [all...]
record_selection_dialog_test.js 21 var checkboxes = dlg.formEl_.getElementsByTagName('input');
22 assertEquals(3, checkboxes.length);
23 assertEquals('three', checkboxes[0].id);
24 assertEquals('three', checkboxes[0].value);
25 assertEquals(true, checkboxes[0].checked);
26 assertEquals('two', checkboxes[1].id);
27 assertEquals('two', checkboxes[1].value);
28 assertEquals(true, checkboxes[1].checked);
29 assertEquals('disabled-by-default-one', checkboxes[2].id);
30 assertEquals('disabled-by-default-one', checkboxes[2].value)
    [all...]
  /frameworks/base/docs/html/design/building-blocks/
switches.jd 5 <p>Switches allow the user to select options. There are three kinds of switches: checkboxes, radio
10 <h2 id="checkboxes">Checkboxes</h2>
15 <p>Checkboxes</p>
19 <p itemprop="description">Checkboxes allow the user to select multiple options from a set. Avoid using a single checkbox to
lists.jd 33 simple single-line items, multi-line items, and custom items with icons, checkboxes, and action
  /external/chromium_org/chrome/browser/resources/options/
import_data_overlay.js 34 var checkboxes =
35 document.querySelectorAll('#import-checkboxes input[type=checkbox]');
36 for (var i = 0; i < checkboxes.length; i++) {
37 checkboxes[i].onchange = function() {
86 * Sets the enabled state of all the checkboxes and the commit button.
90 var checkboxes =
91 document.querySelectorAll('#import-checkboxes input[type=checkbox]');
92 for (var i = 0; i < checkboxes.length; i++)
93 this.setUpCheckboxState_(checkboxes[i], enabled);
113 * Update the enabled and visible states of all the checkboxes
    [all...]
import_data_overlay.css 13 #import-checkboxes > div:not(:first-child) {
clear_browser_data_overlay.js 70 var checkboxes = document.querySelectorAll(
72 for (var i = 0; i < checkboxes.length; i++) {
73 checkboxes[i].onclick = f;
86 // For managed profiles, hide the checkboxes controlling whether or not
192 var checkboxes = document.querySelectorAll(
194 for (var i = 0; i < checkboxes.length; i++) {
195 if (checkboxes[i].checked) {
203 // The checkboxes for clearing history/downloads are enabled unless they
clear_browser_data_overlay.css 9 #clear-data-checkboxes {
language_options.js 715 // Give one of the checkboxes or buttons focus, if it's specified in the
    [all...]
  /external/proguard/src/proguard/gui/
FilterBuilder.java 31 private JCheckBox[] checkBoxes;
37 * @param checkBoxes the check boxes with names and selections that should
41 public FilterBuilder(JCheckBox[] checkBoxes, char separator)
43 this.checkBoxes = checkBoxes;
80 for (int index = 0; index < checkBoxes.length; index++)
82 JCheckBox checkBox = checkBoxes[index];
141 for (int index = 0; index < checkBoxes.length; index++)
143 String name = checkBoxes[index].getText();
  /external/chromium_org/chrome/browser/resources/sync_internals/
data.html 10 <div id="node-type-checkboxes">
  /frameworks/base/docs/html/guide/topics/ui/controls/
checkbox.jd 1 page.title=Checkboxes
19 <p>Checkboxes allow the user to select one or more options from a set. Typically, you should
22 <img src="{@docRoot}images/ui/checkboxes.png" alt="" />
62 click event for both checkboxes:</p>
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListActivity.java 42 boolean[] checkboxes = {true, true, false, true, false, false, false};
47 TaskAdapter myAdapter = new TaskAdapter(this, labels, checkboxes);
TaskListView.java 71 public TaskAdapter(Context context, String[] labels, boolean[] checkboxes) {
75 mCheckboxes = checkboxes;
  /external/chromium_org/components/sync_driver/
user_selectable_sync_type.h 12 // via checkboxes in the "Advanced Sync Preferences" dialog. Used solely for the
39 // selectable checkboxes.
  /developers/build/prebuilts/gradle/BasicAccessibility/Application/src/main/res/values/
strings.xml 26 <string name="checkboxesLabel">Checkboxes</string>
  /developers/samples/android/ui/accessibility/BasicAccessibility/Application/src/main/res/values/
strings.xml 26 <string name="checkboxesLabel">Checkboxes</string>
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List10.java 27 * checkboxes.
List11.java 27 * checkboxes.
  /development/samples/browseable/BasicAccessibility/res/values/
strings.xml 26 <string name="checkboxesLabel">Checkboxes</string>
  /packages/apps/Settings/res/xml/
bluetooth_device_advanced.xml 26 <!-- Profile checkboxes will be added here programmatically. -->
  /external/chromium_org/chrome/browser/resources/
sync_setup_overlay.js 23 // in the main drop-down menu. All checkboxes are checked and disabled when
124 * Sets the checked state of the individual sync data type checkboxes in the
132 var checkboxes = $('choose-data-types-body').querySelectorAll(
134 for (var i = 0; i < checkboxes.length; i++) {
135 checkboxes[i].checked = value;
140 * Restores the checked states of the sync data type checkboxes in the
142 * selected. Required because all the checkboxes are checked when
144 * selected. Note: We only restore checkboxes for data types that are
147 * checkboxes remain hidden, and never get cached.
157 * Enables / grays out the sync data type checkboxes in the advance
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
media_galleries_dialog_views.h 103 // if no checkboxes are ticked. After there is any interaction, or some
104 // checkboxes start checked, this will be true.
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
media_galleries_dialog_cocoa.h 82 // Container view for checkboxes.
  /external/chromium_org/chrome/browser/ui/cocoa/website_settings/
permission_bubble_controller.h 19 // Array of views that are the checkboxes for every requested permission.

Completed in 1937 milliseconds

1 2 3 4 5 6