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

1 2

  /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() {
144 * Overridden solely so that I can get access to the checkbox button to listen to
  /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/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
AirplaneModeController.java 40 public AirplaneModeController(Context context, CompoundButton checkbox) {
43 mCheckBox = checkbox;
44 checkbox.setChecked(mAirplaneMode);
45 checkbox.setOnCheckedChangeListener(this);
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
  /sdk/sdkstats/src/com/android/sdkstats/
SdkStatsPermissionDialog.java 136 final Button checkbox = new Button(composite, SWT.CHECK); local
137 checkbox.setSelection(ALLOW_PING_DEFAULT);
138 checkbox.setText(CHECKBOX_TEXT);
139 checkbox.addSelectionListener(new SelectionAdapter() {
142 mAllowPing = checkbox.getSelection();
  /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);
  /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.
  /packages/apps/Settings/src/com/android/settings/
RingerVolumePreference.java 46 import android.widget.CheckBox;
178 ImageView checkbox = (ImageView) view.findViewById(CHECKBOX_VIEW_ID[i]); local
179 mCheckBoxes[i] = checkbox;
DeviceAdminSettings.java 39 import android.widget.CheckBox;
119 CheckBox checkbox; field in class:DeviceAdminSettings.ViewHolder
171 h.checkbox = (CheckBox)v.findViewById(R.id.checkbox);
183 vh.checkbox.setChecked(mActiveAdmins.contains(item.getComponent()));
  /packages/apps/Contacts/src/com/android/contacts/list/
CustomContactListFilterActivity.java 63 import android.widget.CheckBox;
603 final CheckBox checkbox = (CheckBox)convertView.findViewById(android.R.id.checkbox); local
608 // Handle normal group, with title and checkbox
610 checkbox.setVisibility(View.VISIBLE);
611 checkbox.setChecked(groupVisible);
618 checkbox.setVisibility(View.GONE);
707 final CheckBox checkbox = (CheckBox)view.findViewById(android.R.id.checkbox) local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 78 import android.widget.CheckBox;
606 final CheckBox checkbox = (CheckBox)contents.findViewById(R.id.delete_locked); local
608 checkbox.setVisibility(View.GONE);
610 listener.setDeleteLockedMessage(checkbox.isChecked());
611 checkbox.setOnClickListener(new View.OnClickListener() {
614 listener.setDeleteLockedMessage(checkbox.isChecked());
    [all...]
  /external/webkit/Source/WebCore/html/
InputType.cpp 81 map->add(InputTypeNames::checkbox(), CheckboxInputType::create);
661 const AtomicString& checkbox() function in namespace:WebCore::InputTypeNames
663 DEFINE_STATIC_LOCAL(AtomicString, name, ("checkbox"));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Settings.java 221 CheckBoxPreference checkbox = (CheckBoxPreference)usabilityStudyPref; local
222 checkbox.setChecked(prefs.getBoolean(PREF_USABILITY_STUDY_MODE, true));
223 checkbox.setSummary(R.string.settings_warning_researcher_mode);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 493 milliseconds

1 2