/external/autotest/frontend/client/src/autotest/afe/ |
CheckBoxPanelDisplay.java | 18 CheckBoxImpl checkbox = new CheckBoxImpl(); local 22 table.setWidget(row, col, checkbox); 24 return checkbox;
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
CheckBox.java | 25 /** A checkbox is a button that contains an image indicating the checked or unchecked state and a label.
27 public class CheckBox extends TextButton {
32 public CheckBox (String text, Skin skin) {
36 public CheckBox (String text, Skin skin, String styleName) {
40 public CheckBox (String text, CheckBoxStyle style) {
56 /** Returns the checkbox's style. Modifying the returned style may not have an effect until {@link #setStyle(ButtonStyle)} is
63 Drawable checkbox = null;
local 66 checkbox = style.checkboxOnDisabled;
68 checkbox = style.checkboxOffDisabled;
70 if (checkbox == null) { [all...] |
/packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/ |
CollapsibleCheckboxPreferenceGroup.java | 37 * also has a checkbox. 57 View checkbox = holder.findViewById(com.android.internal.R.id.checkbox); local 58 if (checkbox != null && checkbox instanceof Checkable) { 59 ((Checkable) checkbox).setChecked(mChecked); 62 View parent = (View) checkbox.getParent(); 88 // The checkbox view click handler. 94 // We need to find the CheckBox in the parent view that we are using as a touch target. 98 View child = parent.findViewById(com.android.internal.R.id.checkbox); [all...] |
NestedCheckboxPreference.java | 23 import android.widget.CheckBox; 39 CheckBox checkboxWidget = 40 (CheckBox) holder.findViewById(com.android.internal.R.id.checkbox);
|
/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/doclava/res/assets/templates/components/ |
api_filter.cs | 4 <input type="checkbox" id="apiLevelCheckbox" onclick="toggleApiLevelSelector(this)" />
|
/cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/ |
ScopedDirectoryAccessClientTest.java | 227 UiObject checkbox = dialog.assertDoNotAskAgainVisibility(true); local 228 assertTrue("checkbox should not be checkable", checkbox.isCheckable()); 229 assertFalse("checkbox should not be checked", checkbox.isChecked()); 230 checkbox.click(); 231 assertTrue("checkbox should be checked", checkbox.isChecked()); // Sanity check 368 UiObject checkbox = null; local 370 checkbox = getDoNotAskAgainCheckBox() [all...] |
/external/autotest/server/cros/ap_configurators/ |
westerndigitaln600_ap_configurator.py | 204 elements = self.driver.find_elements_by_css_selector('span.checkbox') 205 checkbox = elements[0] 208 checkbox = elements[3] 212 if ('checkbox.png' in 213 checkbox.value_of_css_property('background-image')): 231 elements = self.driver.find_elements_by_css_selector('span.checkbox') 232 checkbox = elements[0] 235 checkbox = elements[3] 239 image = 'checkbox.png' 244 checkbox.value_of_css_property('background-image')) [all...] |
/packages/apps/Settings/src/com/android/settings/notification/ |
NotificationLockscreenPreference.java | 34 import android.widget.CheckBox; 91 CheckBox checkbox = (CheckBox) dialog.findViewById(R.id.lockscreen_remote_input); local 92 checkbox.setChecked(!mAllowRemoteInput); 93 checkbox.setOnCheckedChangeListener(mListener); 94 checkbox.setEnabled(mAdminRestrictingRemoteInput == null); 100 checkbox.setClickable(false);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
UsbDebuggingActivity.java | 35 import android.widget.CheckBox; 45 private CheckBox mAlwaysAllow; 74 // add "always allow" checkbox 76 View checkbox = inflater.inflate(com.android.internal.R.layout.always_use_checkbox, null); local 77 mAlwaysAllow = (CheckBox)checkbox.findViewById(com.android.internal.R.id.alwaysUse); 79 ap.mView = checkbox;
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
WifiNoInternetDialog.java | 32 import android.widget.CheckBox; 48 private CheckBox mAlwaysAllow; 126 final View checkbox = inflater.inflate( local 128 ap.mView = checkbox; 130 mAlwaysAllow = (CheckBox) checkbox.findViewById(com.android.internal.R.id.alwaysUse);
|
/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]);
|
/frameworks/support/v7/preference/src/android/support/v7/preference/ |
CheckBoxPreference.java | 29 * A {@link Preference} that provides checkbox widget 91 syncCheckboxView(holder.findViewById(android.R.id.checkbox)); 112 View checkboxView = view.findViewById(android.R.id.checkbox);
|
/external/chromium-trace/catapult/dashboard/dashboard/static/ |
base.css | 120 input[type=checkbox] { 131 input[type=checkbox]:checked::after {
|
/frameworks/base/core/java/android/preference/ |
CheckBoxPreference.java | 26 * A {@link Preference} that provides checkbox widget 66 View checkboxView = view.findViewById(com.android.internal.R.id.checkbox);
|
/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
|
/frameworks/base/packages/Shell/src/com/android/shell/ |
BugreportWarningActivity.java | 31 import android.widget.CheckBox; 43 private CheckBox mConfirmRepeat; 62 mConfirmRepeat = (CheckBox) ap.mView.findViewById(android.R.id.checkbox);
|
/packages/apps/Settings/src/com/android/settings/localepicker/ |
LocaleDragCell.java | 21 import android.widget.CheckBox; 29 // We need to keep the label and the checkbox "in sync" 30 // The checkbox shows in remove mode, and the label shows in normal mode, in the same position. 33 private CheckBox mCheckbox; 48 mCheckbox = (CheckBox) findViewById(R.id.checkbox); 63 // "Opposite" visibility for label / checkbox 107 public CheckBox getCheckbox() {
|
/packages/apps/Settings/src/com/android/settings/ |
DeviceAdminSettings.java | 48 import android.widget.CheckBox; 185 CheckBox checkbox; field in class:DeviceAdminSettings.ViewHolder 273 h.checkbox = (CheckBox) v.findViewById(R.id.checkbox); 287 vh.checkbox.setChecked(isActiveAdmin(item)); 293 vh.checkbox.setEnabled(enabled);
|
/external/clang/www/demo/ |
index.cgi | 196 print $c->checkbox( 202 print $c->checkbox( 207 print $c->checkbox( 215 print $c->checkbox( 220 print $c->checkbox(
|
/external/selinux/policycoreutils/gui/ |
booleansPage.py | 119 checkbox = gtk.CellRendererToggle() 120 checkbox.connect("toggled", self.boolean_toggled) 121 col = gtk.TreeViewColumn('Active', checkbox, active=ACTIVE)
|
/development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/ |
ViewAnimations.java | 30 import android.widget.CheckBox; 42 CheckBox mCheckBox; 49 mCheckBox = (CheckBox) findViewById(R.id.checkbox);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
CustomContactListFilterActivity.java | 50 import android.widget.CheckBox; 605 final CheckBox checkbox = (CheckBox)convertView.findViewById(android.R.id.checkbox); local 610 // Handle normal group, with title and checkbox 612 checkbox.setVisibility(View.VISIBLE); 613 checkbox.setChecked(groupVisible); 620 checkbox.setVisibility(View.GONE); 704 final CheckBox checkbox = (CheckBox)view.findViewById(android.R.id.checkbox) local [all...] |
/packages/apps/Messaging/src/com/android/messaging/ui/attachmentchooser/ |
AttachmentGridItemView.java | 24 import android.widget.CheckBox; 46 private CheckBox mCheckBox; 57 mCheckBox = (CheckBox) findViewById(R.id.checkbox); 74 // Enlarge the clickable region for the checkbox.
|