HomeSort by relevance Sort by last modified time
    Searched refs:checkbox (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DoNotDisturbController.java 39 public DoNotDisturbController(Context context, CompoundButton checkbox) {
46 mCheckBox = checkbox;
47 checkbox.setOnCheckedChangeListener(this);
49 checkbox.setChecked(!mDoNotDisturb);
52 // The checkbox is ON for notifications coming in and OFF for Do not disturb, so we
AirplaneModeController.java 41 public AirplaneModeController(Context context, CompoundButton checkbox) {
44 mCheckBox = checkbox;
45 checkbox.setChecked(mAirplaneMode);
46 checkbox.setOnCheckedChangeListener(this);
AutoRotateController.java 40 public AutoRotateController(Context context, CompoundButton checkbox,
43 mCheckbox = checkbox;
  /external/webkit/Source/WebCore/inspector/front-end/
BreakpointsSidebarPane.js 53 var checkbox = document.createElement("input");
54 checkbox.className = "checkbox-elem";
55 checkbox.type = "checkbox";
56 checkbox.checked = breakpoint.enabled;
57 checkbox.addEventListener("click", this._breakpointCheckboxClicked.bind(this, breakpoint), false);
58 element.appendChild(checkbox);
86 breakpointItem.checkbox = checkbox;
    [all...]
  /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/chrome/browser/resources/options/
advanced_options.css 7 #advancedPage > section > div:only-of-type > div.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/doclava/res/assets/templates/components/
api_filter.cs 4 <input type="checkbox" id="apiLevelCheckbox" onclick="toggleApiLevelSelector(this)" />
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbDebuggingActivity.java 37 import android.widget.CheckBox;
50 private CheckBox mAlwaysAllow;
80 // add "always allow" checkbox
82 View checkbox = inflater.inflate(com.android.internal.R.layout.always_use_checkbox, null); local
83 mAlwaysAllow = (CheckBox)checkbox.findViewById(com.android.internal.R.id.alwaysUse);
85 ap.mView = checkbox;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DebugSettings.java 58 final CheckBoxPreference checkbox = (CheckBoxPreference)usabilityStudyPref; local
59 checkbox.setChecked(prefs.getBoolean(PREF_USABILITY_STUDY_MODE,
61 checkbox.setSummary(R.string.settings_warning_researcher_mode);
  /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);
renderer_accessibility_browsertest.cc 100 "<body><input type='button' value='push' /><input type='checkbox' />"
141 const WebAccessibility& checkbox = body.children[1]; local
142 EXPECT_EQ(WebAccessibility::ROLE_CHECKBOX, checkbox.role);
144 "input", GetAttr(checkbox, WebAccessibility::ATTR_HTML_TAG).c_str());
147 GetAttr(checkbox, WebAccessibility::ATTR_DISPLAY).c_str());
148 ASSERT_EQ(1U, checkbox.html_attributes.size());
150 "type", UTF16ToUTF8(checkbox.html_attributes[0].first).c_str());
152 "checkbox", UTF16ToUTF8(checkbox.html_attributes[0].second).c_str());
browser_accessibility_manager_unittest.cc 66 WebAccessibility checkbox; local
67 checkbox.id = 3;
68 checkbox.name = UTF8ToUTF16("Checkbox");
69 checkbox.role = WebAccessibility::ROLE_CHECKBOX;
70 checkbox.state = 0;
78 root.children.push_back(checkbox);
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminSettings.java 39 import android.widget.CheckBox;
151 CheckBox checkbox; field in class:DeviceAdminSettings.ViewHolder
209 h.checkbox = (CheckBox)v.findViewById(R.id.checkbox);
221 vh.checkbox.setChecked(mActiveAdmins.contains(item.getComponent()));
222 final boolean activeOwner = vh.checkbox.isChecked()
228 vh.checkbox.setEnabled(!activeOwner);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java 28 import android.widget.CheckBox;
93 CheckBox checkbox = (CheckBox) convertView.findViewById(R.id.tasklist_finished); local
94 checkbox.setChecked(mCheckboxes[position]);
  /external/chromium/chrome/browser/resources/net_internals/
httpthrottlingview.js 30 * Handler for the onclick event of the checkbox.
  /external/webkit/Source/WebCore/html/
CheckboxInputType.cpp 49 return InputTypeNames::checkbox();
  /frameworks/base/core/java/android/preference/
CheckBoxPreference.java 26 * A {@link Preference} that provides checkbox widget
61 View checkboxView = view.findViewById(com.android.internal.R.id.checkbox);
  /external/chromium/chrome/browser/resources/
bug_report.js 89 if ($('screenshot-checkbox').checked && selectedThumbnailId)
92 if (!$('page-url-checkbox').checked)
103 if ($('user-email-text') && $('sys-info-checkbox')) {
105 if (!$('user-email-checkbox').checked)
108 String($('sys-info-checkbox').checked)]);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
proxy_form_controller.js 192 var checkbox = document.getElementById('singleProxyForEverything');
193 return checkbox.checked ? this.httpProxy : null;
200 * port, and scheme. If null, the single proxy checkbox will be unchecked.
203 var checkbox = document.getElementById('singleProxyForEverything');
204 checkbox.checked = !!data;
209 if (checkbox.checked)
210 checkbox.parentNode.parentNode.classList.add('single');
212 checkbox.parentNode.parentNode.classList.remove('single');
419 t.getAttribute('type') === 'checkbox' &&
618 * for all protocols" checkbox. Expects to be called as an event handle
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/css/
file_manager.css 130 .thumbnail-item > input[type="checkbox"] {
231 .file-checkbox {
237 li.thumbnail-item .file-checkbox {
241 li.table-row:hover .file-checkbox,
242 li.thumbnail-item:hover .file-checkbox {
246 .file-checkbox:hover,
247 li.table-row[selected] .file-checkbox,
248 li.thumbnail-item[selected] .file-checkbox {
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test5DetailFragment.java 27 import android.widget.CheckBox;
67 CheckBox checkbox = (CheckBox) rootView.findViewById(R.id.test_5_checkBox); local
68 checkbox.setChecked(false);
  /external/chromium/chrome/browser/resources/chromeos/
proxy_settings.js 19 cr.ui.decorate('input[pref][type=checkbox]', options.PrefCheckbox);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
EditorsPage.java 75 // Add a listener which fires whenever the checkbox for the custom formatter
82 Button checkbox = editor.getChangeControl(parent); local
83 checkbox.addSelectionListener(new SelectionAdapter() {
148 * Overridden solely so that I can get access to the checkbox button to listen to

Completed in 4706 milliseconds

1 2 3 4