/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/ |
options.js | 11 // Initialize the checkbox checked state from the saved preference. 13 var checkbox = document.getElementById('notifications'); 15 checkbox.checked = useNotifications; 16 checkbox.addEventListener( 18 function() {prefs.setUseNotifications(checkbox.checked);});
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
filter.css | 95 .filter-checkbox-filter { 108 .filter-checkbox-filter .checkbox-filter-checkbox { 122 .filter-checkbox-filter .checkbox-filter-checkbox-check { 130 .filter-checkbox-filter .checkbox-filter-checkbox-checked [all...] |
BreakpointsSidebarPane.js | 95 var checkbox = document.createElement("input"); 96 checkbox.className = "checkbox-elem"; 97 checkbox.type = "checkbox"; 98 checkbox.checked = breakpoint.enabled(); 99 checkbox.addEventListener("click", this._breakpointCheckboxClicked.bind(this, breakpoint), false); 100 element.appendChild(checkbox); 131 breakpointItem.checkbox = checkbox; [all...] |
breakpointsList.css | 69 .breakpoint-list .checkbox-elem { 104 .event-listener-breakpoints .checkbox-elem {
|
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/ |
BatteryWaster.java | 29 import android.widget.CheckBox; 55 findViewById(R.id.checkbox).setOnClickListener(mClickListener); 75 if (((CheckBox)findViewById(R.id.checkbox)).isChecked()) { 78 if (((CheckBox)findViewById(R.id.checkbox_wake)).isChecked()) { 95 CheckBox checkbox = (CheckBox)v; 96 if (checkbox.isChecked()) { 106 CheckBox checkbox = (CheckBox)v [all...] |
/development/samples/devbytes/graphics/BitmapAllocation/src/com/example/android/bitmapallocation/ |
BitmapAllocation.java | 24 import android.widget.CheckBox; 55 final CheckBox checkbox = (CheckBox) findViewById(R.id.checkbox); local 78 if (checkbox.isChecked()) {
|
/external/chromium_org/chrome/browser/ui/gtk/ |
protocol_dialog_gtk.cc | 75 // Add the checkbox. 95 bool checkbox = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkbox_)); local 97 delegate_->DoAccept(delegate_->url(), checkbox); 101 delegate_->DoCancel(delegate_->url(), checkbox);
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/ |
popup.js | 21 var checkbox = document.createElement('input'); 22 checkbox.checked = true; 23 checkbox.type = 'checkbox'; 24 checkbox.id = 'check' + i; 25 col0.appendChild(checkbox); 29 checkbox.checked = !checkbox.checked;
|
/external/chromium/chrome/browser/resources/options/ |
advanced_options.css | 7 #advancedPage > section > div:only-of-type > div.checkbox {
|
/external/chromium-trace/trace-viewer/src/cc/ |
layer_viewer.css | 26 .labeled-checkbox {
|
/external/chromium_org/chrome/browser/ui/views/extensions/ |
media_galleries_dialog_views.cc | 19 #include "ui/views/controls/button/checkbox.h" 210 views::Checkbox* checkbox = iter->second; local 211 checkbox->SetChecked(permitted); 212 checkbox->SetText(label); 213 checkbox->SetElideBehavior(views::Label::ELIDE_IN_MIDDLE); 214 checkbox->SetTooltipText(tooltip_text); 216 views::View* checkbox_view = checkbox->parent(); 224 views::Checkbox* checkbox = new views::Checkbox(label) local [all...] |
/external/chromium_org/chrome/test/functional/ |
extensions.py | 40 """Clicks on 'Enabled' checkbox for specified extension. 46 checkbox = self._driver.find_element_by_xpath( 47 '//*[@id="%s"]//*[@class="enable-controls"]//*[@type="checkbox"]' % 49 if checkbox != enabled: 50 checkbox.click() 55 """Clicks on 'Allow in incognito' checkbox for specified extension. 62 checkbox = self._driver.find_element_by_xpath( 63 '//*[@id="%s"]//*[@class="incognito-control"]//*[@type="checkbox"]' % 65 if checkbox.is_selected() != allowed: 66 checkbox.click( [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_notification_controller.h | 29 // Optional checkbox. 46 @property(nonatomic, readonly) NSButton* checkbox; variable
|
/external/chromium_org/ui/message_center/cocoa/ |
settings_entry_view.h | 17 // includes an enable/disable checkbox, icon, name, and learn more button, 35 // The button that contains the label, notifier icon and checkbox. 50 - (NSButton*)checkbox;
|
/external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/ |
sample.js | 46 // Create some checkbox items.
49 console.log("checkbox item " + info.menuItemId +
55 {"title": "Checkbox1", "type": "checkbox", "onclick":checkboxOnClick});
57 {"title": "Checkbox2", "type": "checkbox", "onclick":checkboxOnClick});
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/basic/ |
sample.js | 46 // Create some checkbox items. 49 console.log("checkbox item " + info.menuItemId + 55 {"title": "Checkbox1", "type": "checkbox", "onclick":checkboxOnClick}); 57 {"title": "Checkbox2", "type": "checkbox", "onclick":checkboxOnClick});
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/event_page/ |
sample.js | 13 console.log("checkbox item " + info.menuItemId + 54 // Create some checkbox items. 56 {"title": "Checkbox1", "type": "checkbox", "id": "checkbox1"}); 58 {"title": "Checkbox2", "type": "checkbox", "id": "checkbox2"});
|
/external/doclava/res/assets/templates/components/ |
api_filter.cs | 4 <input type="checkbox" id="apiLevelCheckbox" onclick="toggleApiLevelSelector(this)" />
|
/external/chromium_org/ui/accessibility/ |
ax_tree_unittest.cc | 27 AXNodeData checkbox; local 28 checkbox.id = 3; 29 checkbox.role = AX_ROLE_CHECK_BOX; 34 initial_state.nodes.push_back(checkbox); 58 EXPECT_EQ(checkbox.id, checkbox_node->id()); 59 EXPECT_EQ(checkbox.role, checkbox_node->data().role);
|
/external/chromium_org/ui/views/examples/ |
text_example.cc | 12 #include "ui/views/controls/button/checkbox.h" 70 // Toggles bit |flag| on |flags| based on state of |checkbox|. 71 void SetFlagFromCheckbox(Checkbox* checkbox, int* flags, int flag) { 72 if (checkbox->checked()) 163 Checkbox* TextExample::AddCheckbox(GridLayout* layout, const char* name) { 164 Checkbox* checkbox = new Checkbox(ASCIIToUTF16(name)); local 165 checkbox->set_listener(this) [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/ |
chrome_shared.css | 128 div.checkbox, 149 /* CHECKBOX, RADIO */ 150 input[type=checkbox], 158 /* Checkbox and radio buttons have different sizes on different platforms. The 163 label > input[type=checkbox], 169 html[os=mac] label > input[type=checkbox], 174 html[os=chromeos] label > input[type=checkbox], 179 /* Checkbox and radio hover visuals. 182 label:hover > input[type=checkbox]:not([disabled]), 188 label:hover > input[type=checkbox]:not([disabled]) ~ span [all...] |
/external/chromium_org/chrome/browser/ui/gtk/extensions/ |
media_galleries_dialog_gtk_unittest.cc | 105 GtkWidget* checkbox = local 107 ASSERT_TRUE(GTK_IS_TOGGLE_BUTTON(checkbox)); 108 EXPECT_TRUE(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkbox))); 111 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbox), FALSE); 114 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbox), TRUE); 117 // Tests that UpdateGallery will add a new checkbox, but only if it refers to
|
/external/chromium_org/chrome/browser/ui/webui/extensions/chromeos/ |
kiosk_apps_browsertest.js | 178 // Verify that checking disable bailout checkbox brings up confirmation UI and 181 var checkbox = $('kiosk-disable-bailout-shortcut'); 186 checkbox.checked = false; 187 cr.dispatchSimpleEvent(checkbox, 'change'); 191 checkbox.checked = true; 192 cr.dispatchSimpleEvent(checkbox, 'change'); 197 expectTrue(checkbox.checked); 201 checkbox.checked = true; 202 cr.dispatchSimpleEvent(checkbox, 'change'); 205 expectFalse(checkbox.checked) [all...] |
/external/chromium_org/chrome/browser/resources/sync_internals/ |
data.js | 148 var checkbox = document.createElement('input'); 149 checkbox.id = type; 150 checkbox.type = 'checkbox'; 151 checkbox.checked = 'yes'; 152 div.appendChild(checkbox);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
UsbDebuggingActivity.java | 35 import android.widget.CheckBox; 45 private CheckBox mAlwaysAllow; 75 // add "always allow" checkbox 77 View checkbox = inflater.inflate(com.android.internal.R.layout.always_use_checkbox, null); local 78 mAlwaysAllow = (CheckBox)checkbox.findViewById(com.android.internal.R.id.alwaysUse); 80 ap.mView = checkbox;
|