/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_win_unittest.cc | 80 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);
|
/hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/ |
FmRxRdsConfig.java | 32 import android.widget.CheckBox; 54 private CheckBox chbRdsMode; 55 private CheckBox chbSetRdsAf; 110 chbRdsMode = (CheckBox) findViewById(R.id.chbRdsmode); 113 chbSetRdsAf = (CheckBox) findViewById(R.id.chbSetRdsAf); 347 // Rds Af checkbox 349 // Rds Af checkbox
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PresentationActivity.java | 42 import android.widget.CheckBox; 69 * checkbox to show a presentation on that display. 93 private CheckBox mShowAllDisplaysCheckbox; 132 // Set up checkbox to toggle between showing all displays or only presentation displays. 133 mShowAllDisplaysCheckbox = (CheckBox)findViewById(R.id.show_all_displays); 233 * Called when the show all displays checkbox is toggled or when 239 // Show all displays checkbox was toggled. 242 // Display item checkbox was toggled. 348 CheckBox cb = (CheckBox)v.findViewById(R.id.checkbox_presentation) [all...] |
/cts/hostsidetests/holo/app/src/android/holo/app/ |
HoloDeviceActivity.java | 31 import android.widget.CheckBox; 252 new Layout(R.layout.checkbox, "checkbox", null), 253 new Layout(R.layout.checkbox, "checkbox_checked", new Modifier() { 256 ((CheckBox) v).setChecked(true);
|
/external/chromium/chrome/browser/resources/options/ |
advanced_options.js | 151 // Set the checked state of the metrics reporting checkbox. 198 // Set the prompt for download checkbox. 228 // Set the checked state for the sslCheckRevocation checkbox. 235 // Set the checked state for the sslUseSSL3 checkbox. 241 // Set the checked state for the sslUseTLS1 checkbox.
|
sync_setup_overlay.html | 226 <input id="appsCheckbox" type="checkbox" 234 <input id="autofillCheckbox" type="checkbox" 242 <input id="bookmarksCheckbox" type="checkbox" 250 <input id="extensionsCheckbox" type="checkbox" 258 <input id="typedUrlsCheckbox" type="checkbox" 266 <input id="passwordsCheckbox" type="checkbox" 274 <input id="preferencesCheckbox" type="checkbox" 282 <input id="themesCheckbox" type="checkbox" 290 <input id="sessionsCheckbox" type="checkbox"
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
source_row.js | 44 var checkbox = addNode(selectionCol, 'input'); 45 checkbox.title = this.getSourceId(); 47 checkbox.type = 'checkbox'; 57 checkbox.onchange = this.onCheckboxToggled_.bind(this);
|
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
internet_detail.html | 70 <div class="checkbox"> 72 <input id="prefer-network-wifi" type="checkbox"> 87 <div class="checkbox"> 89 <input id="auto-connect-network-wifi" type="checkbox"> 171 <div class="checkbox"> 173 <input id="auto-connect-network-wimax" type="checkbox"> 219 <div class="checkbox"> 221 <input id="auto-connect-network-vpn" type="checkbox"> 339 <div class="checkbox"> 341 <input id="auto-connect-network-cellular" type="checkbox"> [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
TestActivity.java | 29 import android.widget.CheckBox; 60 final CheckBox multiple = new CheckBox(context); 63 final CheckBox localOnly = new CheckBox(context);
|
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/ |
SelectCalendarsSyncAdapter.java | 34 import android.widget.CheckBox; 178 CheckBox cb = (CheckBox) view.findViewById(R.id.sync); 272 CheckBox cb = (CheckBox) view.findViewById(R.id.sync);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
CustomContactListFilterActivity.java | 50 import android.widget.CheckBox; 602 final CheckBox checkbox = (CheckBox)convertView.findViewById(android.R.id.checkbox); local 607 // Handle normal group, with title and checkbox 609 checkbox.setVisibility(View.VISIBLE); 610 checkbox.setChecked(groupVisible); 617 checkbox.setVisibility(View.GONE); 706 final CheckBox checkbox = (CheckBox)view.findViewById(android.R.id.checkbox) local [all...] |
/external/chromium/chrome/browser/ui/views/ |
create_application_shortcut_view.cc | 31 #include "views/controls/button/checkbox.h" 388 views::Checkbox* CreateApplicationShortcutView::AddCheckbox( 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_org/chrome/browser/resources/file_manager/foreground/css/ |
common.css | 12 input.common[type='checkbox'], 25 input.common[type='checkbox']:hover, 26 input.common[type='checkbox']:checked, 32 input.common[type='checkbox'] { 36 input.common[type='checkbox']:checked::after { 44 input.common[type='checkbox'].white { 48 input.common[type='checkbox'].white:not(:checked)::after { 55 input.common[type='checkbox'].white:checked::after { 62 input.common[type='checkbox']::after {
|
/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.
|
/external/chromium_org/content/browser/accessibility/ |
cross_platform_accessibility_browsertest.cc | 135 "<body><input type='button' value='push' /><input type='checkbox' />" 185 const AccessibilityNodeDataTreeNode& checkbox = body.children[1]; local 186 EXPECT_EQ(blink::WebAXRoleCheckBox, checkbox.role); 188 "input", GetAttr(checkbox, AccessibilityNodeData::ATTR_HTML_TAG).c_str()); 191 GetAttr(checkbox, AccessibilityNodeData::ATTR_DISPLAY).c_str()); 192 ASSERT_EQ(1U, checkbox.html_attributes.size()); 193 EXPECT_STREQ("type", checkbox.html_attributes[0].first.c_str()); 194 EXPECT_STREQ("checkbox", checkbox.html_attributes[0].second.c_str());
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
FilterBar.js | 189 this._regexCheckBox.type = "checkbox"; 483 this._filterElement.classList.add("filter-checkbox-filter", "filter-checkbox-filter-" + className); 524 this._checkElement.enableStyleClass("checkbox-filter-checkbox-checked", this._checked); 552 var checkBorder = label.createChild("div", "checkbox-filter-checkbox"); 553 this._checkElement = checkBorder.createChild("div", "checkbox-filter-checkbox-check");
|
/external/chromium/chrome/browser/resources/options/chromeos/ |
internet_detail.html | 49 <div class="checkbox"> 51 <input id="autoConnectNetwork" type="checkbox"> 83 <div class="checkbox"> 85 <input id="showPlanNotifications" type="checkbox" 241 <div id="sim-pin-lock" class="checkbox"> 243 <input id="sim-card-lock-enabled" type="checkbox">
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/ |
options.js | 156 var topicLists = document.getElementsByClassName('checkBox'); 165 // Saves whether checkbox is checked or not. 211 // checkbox topic list from local storage is found. 234 var topicLists = document.getElementsByClassName('checkBox'); 259 // Saves checkbox topics(if any). 275 * @param {String} id Id of checkbox checked or unchecked.
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
charger_replacement.html | 102 <div id="not-order-charger-checkbox-strip"> 104 <input id="confirm-not-order-charger" type="checkbox"> 106 <div id="confirm-not-order-charger-label-strip" class="checkbox-label"> 184 <div id="confirm-offline-order-checkbox-strip"> 186 <input id="offline-order-confirm" type="checkbox"> 188 <div class="checkbox-label">
|
/external/chromium_org/chrome/browser/resources/extensions/ |
extension_list.js | 132 // The 'allow in incognito' checkbox. 148 // The 'allow file:// access' checkbox. 206 // The 'Enabled' checkbox. 207 var enable = node.querySelector('.enable-checkbox'); 214 // When e.target is the label instead of the checkbox, it doesn't 215 // have the checked property and the state of the checkbox is
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
browser_options_handler.h | 194 // Callback for the "Use SSL 3.0" checkbox. This is called if the user toggles 195 // the "Use SSL 3.0" checkbox. 198 // Callback for the "Use TLS 1.0" checkbox. This is called if the user toggles 199 // the "Use TLS 1.0" checkbox. 258 // Called when the accessibility checkbox values are changed. 259 // |args| will contain the checkbox checked state as a string
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/ |
options.js | 156 var topicLists = document.getElementsByClassName('checkBox'); 165 // Saves whether checkbox is checked or not. 211 // checkbox topic list from local storage is found. 234 var topicLists = document.getElementsByClassName('checkBox'); 259 // Saves checkbox topics(if any). 275 * @param {String} id Id of checkbox checked or unchecked.
|
/external/chromium_org/chrome/test/functional/ap_lab/ |
ap_configurator.py | 116 """Sets the state of a checkbox, by passing the ID. 119 check_box_id: the html id of the checkbox 120 selected: True to enable the checkbox; False otherwise 128 """Sets the state of a checkbox, by passing the xpath. 131 xpath: the xpath of the checkbox 132 selected: True to enable the checkbox; False otherwise
|
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/ |
SensorActivity.java | 31 import android.widget.CheckBox; 46 * For each sensor it displays a checkbox that is enabled if the sensor is supported 207 private CheckBox mChk; 213 // Initialize displayed checkbox for this sensor, and register 215 mChk = (CheckBox) row.findViewById(R.id.row_checkbox); 227 * Handles checked state change for the associated CheckBox. If check
|
/external/chromium_org/ui/views/focus/ |
focus_traversal_unittest.cc | 13 #include "ui/views/controls/button/checkbox.h" 235 // Checkbox * kTopCheckBoxID 246 // Checkbox * kFruitCheckBoxID 272 // Checkbox * kBoldCheckBoxID 273 // Checkbox * kItalicCheckBoxID 274 // Checkbox * kUnderlinedCheckBoxID 290 Checkbox* cb = new Checkbox(ASCIIToUTF16("This is a checkbox")); 370 cb = new Checkbox(ASCIIToUTF16("This is another check box")) [all...] |