HomeSort by relevance Sort by last modified time
    Searched refs:checkbox (Results 76 - 100 of 188) sorted by null

1 2 34 5 6 7 8

  /external/chromium_org/ui/views/controls/button/
custom_button_unittest.cc 10 #include "ui/views/controls/button/checkbox.h"
164 Checkbox checkbox(text);
165 EXPECT_TRUE(CustomButton::AsCustomButton(&checkbox));
  /external/chromium_org/chrome/browser/resources/profiler/
profiler.js 98 // The checkbox which controls whether things like "Worker Threads" and
100 var MERGE_SIMILAR_THREADS_CHECKBOX_ID = 'merge-similar-threads-checkbox';
766 * Adds a checkbox to |parent|. The checkbox will have a label on its right
767 * with text |label|. Returns the checkbox input node.
771 var checkbox = addNode(labelNode, 'input');
772 checkbox.type = 'checkbox';
774 return checkbox;
    [all...]
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_win_unittest.cc 122 AccessibilityNodeData checkbox; local
123 checkbox.id = 3;
124 checkbox.SetName("Checkbox");
125 checkbox.role = blink::WebAXRoleCheckBox;
126 checkbox.state = 0;
144 manager->UpdateNodesForTesting(button, checkbox);
155 manager->UpdateNodesForTesting(button, checkbox);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
proxy_form_controller_test.js 120 // Clicking the "Use single proxy" checkbox should set the correct
125 var checkbox = document.getElementById('singleProxyForEverything');
126 var section = checkbox.parentNode.parentNode;
127 // Checkbox only works in active group, `testActivationClicks` tests
131 checkbox.checked = false;
132 checkbox.dispatchEvent(this.clickEvent_);
134 checkbox.dispatchEvent(this.clickEvent_);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
proxy_form_controller_test.js 115 // Clicking the "Use single proxy" checkbox should set the correct
120 var checkbox = document.getElementById('singleProxyForEverything');
121 var section = checkbox.parentNode.parentNode;
122 // Checkbox only works in active group, `testActivationClicks` tests
126 checkbox.checked = false;
127 checkbox.dispatchEvent(this.clickEvent_);
129 checkbox.dispatchEvent(this.clickEvent_);
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 29 import android.widget.CheckBox;
41 CheckBox mCheckBox;
48 mCheckBox = (CheckBox) findViewById(R.id.checkbox);
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/css/
wallpaper_manager.css 329 #surprise-me #checkbox {
340 #surprise-me #checkbox.checked {
  /external/chromium_org/chrome/browser/resources/instant/
instant.js 102 if ($(prefName).type == 'checkbox')
114 if ($(prefName).type == 'checkbox')
  /external/chromium_org/chrome/browser/resources/print_preview/
print_preview.css 65 .right-column .checkbox,
70 .right-column .checkbox label,
300 :enabled:focus:-webkit-any(input[type='checkbox'],
  /external/chromium_org/chrome/browser/ui/views/
create_application_shortcut_view.cc 47 #include "ui/views/controls/button/checkbox.h"
396 views::Checkbox* CreateApplicationShortcutView::AddCheckbox(
398 views::Checkbox* checkbox = new views::Checkbox(text); local
399 checkbox->SetChecked(checked);
400 checkbox->set_listener(this);
401 return checkbox;
417 // When no checkbox is checked we should not have the action button enabled.
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HierarchicalFolderSelectorAdapter.java 61 final CompoundButton checkBox = (CompoundButton) view.findViewById(R.id.checkbox);
65 if (checkBox != null) {
66 checkBox.setText(TextUtils.isEmpty(row.mPathName) ? folder.name
  /cts/tests/tests/holo/src/android/holo/cts/
LayoutAdapter.java 116 addLayout(R.string.checkbox, "checkbox",
117 R.layout.checkbox, null, NO_TIMEOUT_MS);
  /external/chromium/chrome/browser/resources/net_internals/
sourceentry.js 168 var checkbox = addNode(selectionCol, 'input');
169 checkbox.type = 'checkbox';
179 checkbox.onchange = this.onCheckboxToggled_.bind(this);
  /external/chromium_org/chrome/browser/resources/extensions/chromeos/
kiosk_apps.css 5 #kiosk-apps-page .checkbox {
  /external/chromium_org/chrome/browser/resources/safe_browsing/
malware_block_v2.js 15 * Records state of the reporting checkbox.
18 var checkBox = $('check-report');
19 if (checkBox.checked)
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
ui.js 79 ui.html.checkbox = function(queryParameter, label, isChecked, opt_extraJavaScript)
83 '<input type="checkbox" onchange="g_history.toggleQueryParameter(\'' + queryParameter + '\');' + js + '" ' +
124 html += ui.html.checkbox('showAllRuns', 'Use all recorded runs', g_history.crossDashboardState.showAllRuns);
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
file_manager.css 955 /* Using all seems to cause preview panel and checkbox flicking issue. */
1136 .file-checkbox {
1143 #select-all-checkbox {
1151 #list-container .table-header #select-all-checkbox,
1152 #list-container li.table-row .file-checkbox {
1164 #list-container li.table-row .file-checkbox {
1168 #list-container .table-header #select-all-checkbox::after,
1169 #list-container li.table-row .file-checkbox::after {
1173 #list-container .table-header #select-all-checkbox:checked,
1174 #list-container li.table-row .file-checkbox:checked
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 65 import android.widget.CheckBox;
759 final CheckBox checkbox = (CheckBox)contents.findViewById(R.id.delete_locked); local
761 checkbox.setVisibility(View.GONE);
763 listener.setDeleteLockedMessage(checkbox.isChecked());
764 checkbox.setOnClickListener(new View.OnClickListener() {
767 listener.setDeleteLockedMessage(checkbox.isChecked());
    [all...]
  /external/chromium_org/chrome/browser/resources/inspect/
inspect.js 633 var checkbox = $('discover-usb-devices-enable');
634 checkbox.checked = !!enabled;
635 checkbox.disabled = false;
639 var checkbox = $('port-forwarding-enable');
640 checkbox.checked = !!enabled;
641 checkbox.disabled = false;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SettingsScreen.js 180 input.type = "checkbox";
370 var checkbox = WebInspector.SettingsTab.createSettingCheckbox(WebInspector.UIString("Enable CSS source maps"), WebInspector.settings.cssSourceMapsEnabled);
371 p.appendChild(checkbox);
375 checkbox.appendChild(fieldset);
389 checkbox = WebInspector.SettingsTab.createSettingCheckbox(WebInspector.UIString("Skip stepping through sources with particular names"), WebInspector.settings.skipStackFramesSwitch);
392 checkbox.appendChild(fieldset);
393 p.appendChild(checkbox);
449 // We need to manually update the checkbox state, since enabling JavaScript in the page can actually uncover the "forbidden" state.
706 input.type = "checkbox";
    [all...]
sidebarPane.css 190 .section > .header input[type=checkbox] {
  /cts/suite/cts/deviceTests/browserbench/assets/octane/css/
docs.css 397 .download-builder .checkbox + h3 {
412 /* Custom, larger checkbox labels */
413 .download .checkbox {
422 .download .checkbox:hover {
426 .download .checkbox small {
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 878 * Render (and wire up) a checkbox to be used in either a detail or a
883 input.setAttribute('type', 'checkbox');
884 input.className = 'file-checkbox';
    [all...]
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options_page.css 18 #internetPage > section > div:only-of-type > div.checkbox {
  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/
menu-view.js 99 // TODO(junjianx): Add checkbox to decide the breakdown visibility.

Completed in 530 milliseconds

1 2 34 5 6 7 8