HomeSort by relevance Sort by last modified time
    Searched refs:CheckBox (Results 101 - 125 of 164) sorted by null

1 2 3 45 6 7

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
PasswordInputWizardFragment.java 38 import android.widget.CheckBox;
83 private CheckBox textObsufactionToggle;
97 textObsufactionToggle = (CheckBox) action.findViewById(R.id.text_obfuscation_toggle);
  /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...]
  /development/samples/ApiDemos/src/com/example/android/apis/content/
DocumentsSample.java 32 import android.widget.CheckBox;
67 final CheckBox multiple = new CheckBox(context);
70 final CheckBox localOnly = new CheckBox(context);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java 35 import android.widget.CheckBox;
281 CheckBox syncCheckBox = (CheckBox) view.findViewById(R.id.sync);
321 CheckBox visibleCheckBox = (CheckBox) view.findViewById(R.id.visible_check_box);
SelectSyncedCalendarsMultiAccountAdapter.java 40 import android.widget.CheckBox;
190 * This gets called when the CheckBox for a calendar is clicked. It toggles
214 ((CheckBox) v.getTag(TAG_ID_SYNC_CHECKBOX)).setChecked(newState);
378 CheckBox button = (CheckBox) view.findViewById(R.id.sync);
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnDialog.java 35 import android.widget.CheckBox;
59 private CheckBox mMppe;
66 private CheckBox mSaveLogin;
93 mMppe = (CheckBox) mView.findViewById(R.id.mppe);
100 mSaveLogin = (CheckBox) mView.findViewById(R.id.save_login);
  /external/pdfium/core/src/fpdfdoc/
doc_formfield.cpp 13 if (pField->GetType() == CPDF_FormField::CheckBox) {
59 m_Type = CheckBox;
106 case CPDF_FormField::CheckBox:
235 case CheckBox:
304 if (GetType() == CheckBox || GetType() == RadioButton) {
343 case CheckBox:
727 if (m_Type == RadioButton || m_Type == CheckBox) {
799 ASSERT(GetType() == CheckBox || GetType() == RadioButton);
863 ASSERT(GetType() == CheckBox || GetType() == RadioButton);
883 ASSERT(GetType() == CheckBox || GetType() == RadioButton);
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ModalDialogTest.java 13 import android.widget.CheckBox;
255 final CheckBox suppress = (CheckBox) dialog.findViewById(
257 if (suppress == null) return "Suppress checkbox not found.";
259 return "Suppress checkbox is not visible.";
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
JniInterface.java 19 import android.widget.CheckBox;
226 final CheckBox pinCheckBox = (CheckBox)pinEntry.findViewById(R.id.pin_dialog_check);
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 33 import android.widget.CheckBox;
68 private final CheckBox mYearToggle;
177 mYearToggle = (CheckBox) findViewById(R.id.yearToggle);
  /packages/apps/Settings/src/com/android/settings/wifi/
WriteWifiConfigToNfcDialog.java 41 import android.widget.CheckBox;
70 private CheckBox mPasswordCheckBox;
105 mPasswordCheckBox = (CheckBox) mView.findViewById(R.id.show_password);
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
QuotedTextView.java 30 import android.widget.CheckBox;
64 private CheckBox mQuotedTextCheckBox;
88 mQuotedTextCheckBox = (CheckBox) findViewById(R.id.hide_quoted_text);
172 * Update the state of the checkbox for the QuotedTextView as if it were
  /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
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapActivity.java 48 import android.widget.CheckBox;
90 private CheckBox mAlwaysAllowed;
  /packages/apps/Dialer/tests/src/com/android/dialer/tests/calllog/
FillCallLogTestActivity.java 40 import android.widget.CheckBox;
71 private CheckBox mUseRandomNumbers;
75 private CheckBox mCallTypeVideo;
100 mUseRandomNumbers = (CheckBox) findViewById(R.id.use_random_numbers);
128 mCallTypeVideo = (CheckBox) findViewById(R.id.call_type_video);
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfActivity.java 38 import android.widget.CheckBox;
59 CheckBox mLocalCheckBox;
200 mLocalCheckBox = (CheckBox)findViewById(R.id.local);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 30 import android.widget.CheckBox;
55 private final CheckBox mYearToggle;
161 mYearToggle = (CheckBox) findViewById(R.id.yearToggle);
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/tests/
SendTestBroadcastActivity.java 27 import android.widget.CheckBox;
420 final CheckBox delayCheckbox = (CheckBox) findViewById(R.id.button_delay_broadcast);
  /packages/apps/Dialer/src/com/android/dialer/interactions/
PhoneNumberInteraction.java 44 import android.widget.CheckBox;
235 final CheckBox checkBox = (CheckBox)alertDialog.findViewById(R.id.setPrimary);
236 if (checkBox.isChecked()) {
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminSettings.java 45 import android.widget.CheckBox;
154 CheckBox checkbox; field in class:DeviceAdminSettings.ViewHolder
293 h.checkbox = (CheckBox)v.findViewById(R.id.checkbox);
316 vh.checkbox.setChecked(isActiveAdmin(item));
322 vh.checkbox.setEnabled(enabled);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingDialog.java 36 import android.widget.CheckBox;
184 CheckBox alphanumericPin = (CheckBox) view.findViewById(R.id.alphanumeric_pin);
  /packages/apps/Settings/src/com/android/settings/notification/
ManagedServiceSettings.java 45 import android.widget.CheckBox;
275 CheckBox checkbox;
312 h.checkbox = (CheckBox) v.findViewById(R.id.checkbox);
330 vh.checkbox.setChecked(isServiceEnabled(info));
  /frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
ScoAudioTest.java 42 import android.widget.CheckBox;
211 CheckBox box = (CheckBox) findViewById(R.id.useSecondAudioManager);
216 box = (CheckBox) findViewById(R.id.useVirtualCallCheckBox);
  /external/sonivox/jet_tools/JetCreator/
JetCtrls.py 63 class JetCheckBox(wx.CheckBox):
64 """ Checkbox control """
66 wx.CheckBox.__init__(self, parent, id=id, label=label, pos=pos, size=size)
75 wx.CheckBox.SetValue(self, val)
77 wx.CheckBox.SetValue(self, val)
79 wx.CheckBox.SetValue(self, False)
  /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...]

Completed in 2182 milliseconds

1 2 3 45 6 7