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

1 2 3 4 5 6

  /frameworks/base/core/java/android/widget/
Checkable.java 26 * Change the checked state of the view
28 * @param checked The new checked state
30 void setChecked(boolean checked);
33 * @return The current checked state of the view
38 * Change the checked state of the view to the inverse of its current state
ToggleButton.java 27 * Displays checked/unchecked states as a button
68 public void setChecked(boolean checked) {
69 super.setChecked(checked);
75 boolean checked = isChecked();
76 if (checked && mTextOn != null) {
78 } else if (!checked && mTextOff != null) {
84 * Returns the text for when the button is in the checked state.
93 * Sets the text for when the button is in the checked state.
102 * Returns the text for when the button is not in the checked state.
111 * Sets the text for when the button is not in the checked state
    [all...]
CompoundButton.java 34 * A button with two states, checked and unchecked. When the button is pressed
78 boolean checked = a
80 setChecked(checked);
108 * <p>Changes the checked state of this button.</p>
110 * @param checked true to check the button, false to uncheck it
112 public void setChecked(boolean checked) {
113 if (mChecked != checked) {
114 mChecked = checked;
135 * Register a callback to be invoked when the checked state of this button
138 * @param listener the callback to call on checked state chang
283 boolean checked; field in class:CompoundButton.SavedState
    [all...]
CheckedTextView.java 68 boolean checked = a.getBoolean(R.styleable.CheckedTextView_checked, false);
69 setChecked(checked);
84 * <p>Changes the checked state of this text view.</p>
86 * @param checked true to check the text, false to uncheck it
88 public void setChecked(boolean checked) {
89 if (mChecked != checked) {
90 mChecked = checked;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/actions/
ICommonAction.java 32 * Sets the checked status of this action.
33 * @param checked the new checked status
35 public void setChecked(boolean checked);
ToolItemAction.java 41 public void setChecked(boolean checked) {
42 item.setSelection(checked);
  /packages/apps/Contacts/src/com/android/contacts/ui/widget/
CheckableImageView.java 26 * This is used as the background view of quickcontact chiclet, which is in checked state
57 public void setChecked(boolean checked) {
58 if (mChecked != checked) {
59 mChecked = checked;
  /packages/apps/Music/src/com/android/music/
CheckableRelativeLayout.java 57 public void setChecked(boolean checked) {
58 if (mChecked != checked) {
59 mChecked = checked;
  /external/webkit/WebKit/chromium/public/
WebMenuItemInfo.h 51 bool checked; member in struct:WebKit::WebMenuItemInfo
  /external/webkit/WebCore/html/
HTMLDataGridCellElement.idl 35 attribute boolean checked; // The checked state of the column, assuming the type of the column is checkbox.
36 attribute boolean indeterminate; // If the checked state is indeterminate.
HTMLDataGridCellElement.cpp 64 bool HTMLDataGridCellElement::checked() const function in class:WebCore::HTMLDataGridCellElement
69 void HTMLDataGridCellElement::setChecked(bool checked)
71 setAttribute(checkedAttr, checked ? "" : 0);
HTMLDataGridCellElement.h 48 bool checked() const;
  /external/webkit/WebCore/platform/chromium/
ContextMenuItemChromium.cpp 78 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
80 return m_platformDescription.checked;
112 void ContextMenuItem::setChecked(bool checked)
114 m_platformDescription.checked = checked;
  /external/webkit/WebCore/platform/
ContextMenuItem.h 166 checked(false),
174 bool checked; member in struct:WebCore::PlatformMenuItemDescription
183 , checked(false)
191 bool checked; member in struct:WebCore::PlatformMenuItemDescription
201 checked(false),
209 bool checked; member in struct:WebCore::PlatformMenuItemDescription
219 , checked(false)
224 bool checked; member in struct:WebCore::PlatformMenuItemDescription
256 bool checked() const;
  /external/webkit/WebCore/inspector/front-end/
PanelEnablerView.js 48 function enableOption(text, checked) {
53 if (checked)
54 option.checked = true;
98 return this.enabledAlways.checked;
AuditLauncherView.js 78 this.auditReloadedStateElement.checked = true;
95 if (this._categoriesById[id]._checkboxElement.checked)
103 this._runnerCallback(catIds, this._auditPresentStateElement.checked, profilingFinishedCallback.bind(this));
110 childNodes[i].firstChild.checked = checkCategories;
117 this._currentCategoriesCount += event.target.checked ? 1 : -1;
118 this._selectAllCheckboxElement.checked = this._currentCategoriesCount === this._totalCategoriesCount;
144 this._selectAllClicked(event.target.checked);
149 this._selectAllCheckboxElement.checked = true;
176 this._auditPresentStateElement.checked = true;
197 this._selectAllClicked(this._selectAllCheckboxElement.checked);
    [all...]
  /external/bluetooth/glib/gio/
gdatainputstream.c 646 gsize available, checked; local
653 checked = *checked_out;
658 start = checked;
663 for (i = 0; checked < available && i < peeked; i++)
724 checked = end;
726 *checked_out = checked;
757 gsize checked; local
769 checked = 0;
772 while ((found_pos = scan_for_newline (stream, &checked, &last_saw_cr, &newline_len)) == -1)
793 found_pos = checked;
825 gsize available, checked; local
878 gsize checked; local
938 gsize checked; member in struct:__anon2001
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 345 if(form.INH[i].checked==true){ isnh=form.INH[i].value; }
355 if(form.NHB[i].checked==true){ beh=form.NHB[i].value; }
359 if(form.NHS[i].checked==true){ skl=form.NHS[i].value; }
372 if(form.RCD[3].checked==false){
379 if(status!=12){ for(i=0; i<form.RCD.length; i++){ if(form.RCD[i].checked==true)rating=form.RCD[i].value; } }
420 if(form.MSRQ.checked==true){
433 if ( (form.TOC.value=="YES") && (form.RSRQ.checked==true) ) {
439 if(form.RSRQ.checked==true){
452 if ( (form.TOC.value=="YES") && (form.MSRQ.checked==true) ) {
479 if(form.ESRQ.checked==false)
    [all...]
  /external/webkit/WebKit/android/
RenderSkinRadio.cpp 90 bool checked = false; local
92 checked = inputElement->isChecked();
95 canvas->drawBitmap(s_bitmap[checked + 2*(!isCheckBox)],
  /frameworks/base/core/java/android/preference/
CheckBoxPreference.java 86 // because clicking a preference does not immediately change the checked state
147 * Sets the checked state and saves it to the {@link SharedPreferences}.
149 * @param checked The checked state.
151 public void setChecked(boolean checked) {
152 if (mChecked != checked) {
153 mChecked = checked;
154 persistBoolean(checked);
161 * Returns the checked state.
163 * @return The checked state
290 boolean checked; field in class:CheckBoxPreference.SavedState
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuView.java 90 * checked, for that use {@link #setChecked}.
98 * @param checked Whether the checkbox should be checked
100 public void setChecked(boolean checked);
  /system/core/libmincrypt/
Android.mk 17 # TODO: drop the hyphen once these are checked in
  /packages/apps/Settings/src/com/android/settings/bluetooth/
ConnectSpecificProfilesActivity.java 177 private void onOnlineModeCheckedStateChanged(boolean checked) {
178 setOnlineMode(checked, true);
181 private void onProfileCheckedStateChanged(Profile profile, boolean checked) {
184 profileManager.setPreferred(mCachedDevice.getDevice(), checked); local
186 if (checked) {
291 * Gets the summary that describes when checked, it will become a preferred profile.
  /packages/apps/Camera/src/com/android/camera/ui/
PreferenceAdapter.java 64 boolean checked = values[i - 1].equals(settings);
65 item.setChecked(checked);
66 item.setEnabled(checked);
  /external/webkit/WebCore/platform/haiku/
ContextMenuItemHaiku.cpp 146 void ContextMenuItem::setChecked(bool checked)
149 m_platformDescription->SetMarked(checked);

Completed in 547 milliseconds

1 2 3 4 5 6