HomeSort by relevance Sort by last modified time
    Searched full:checked (Results 101 - 125 of 5090) sorted by null

1 2 3 45 6 7 8 91011>>

  /sdk/testapps/jarCheckTests3/lib1/
project.properties 4 # This file must be checked in Version Control Systems.
  /sdk/testapps/jarCheckTests3/lib2/
project.properties 4 # This file must be checked in Version Control Systems.
  /development/samples/ApiDemos/src/com/example/android/apis/view/
CheckableFrameLayout.java 36 public void setChecked(boolean checked) {
37 mChecked = checked;
38 setBackgroundDrawable(checked ? new ColorDrawable(0xff0000a0) : null);
  /development/samples/Support13Demos/src/com/example/android/supportv13/view/
CheckableFrameLayout.java 36 public void setChecked(boolean checked) {
37 mChecked = checked;
38 setBackgroundDrawable(checked ? new ColorDrawable(0xff0000a0) : null);
  /development/samples/Support4Demos/src/com/example/android/supportv4/view/
CheckableFrameLayout.java 36 public void setChecked(boolean checked) {
37 mChecked = checked;
38 setBackgroundDrawable(checked ? new ColorDrawable(0xff0000a0) : null);
  /frameworks/base/core/res/res/drawable/
btn_check_material_anim.xml 19 android:id="@+id/checked"
27 android:toId="@+id/checked"
30 android:fromId="@+id/checked"
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
CheckableImageView.java 62 public void setChecked(final boolean checked) {
63 if (mChecked != checked) {
64 mChecked = checked;
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CheckableFrameLayout.java 44 public void setChecked(boolean checked) {
45 if (checked != mChecked) {
46 mChecked = checked;
  /packages/apps/Music/src/com/android/music/
CheckableRelativeLayout.java 57 public void setChecked(boolean checked) {
58 if (mChecked != checked) {
59 mChecked = checked;
  /packages/experimental/CameraPreviewTest/res/layout/
videochatcameratest_activity.xml 47 android:checked="true" />
53 android:checked="true" />
65 android:checked="false" />
71 android:checked="true" />
83 android:checked="true" />
89 android:checked="false" />
105 android:checked="false" />
110 android:checked="false" />
115 android:checked="false" />
120 android:checked="false" /
    [all...]
  /developers/build/prebuilts/gradle/CustomChoiceList/Application/src/main/res/layout/
list_item.xml 20 (this CheckableLinearLayout) to "checked". Note that this requires that the root view
21 implements the Checkable interface. Once the root view is checked, any children that
22 have the duplicateParentState attribute set will inherit this "checked" state.
37 is checked or unchecked.
50 is checked or unchecked.
  /developers/samples/android/ui/lists/CustomChoiceList/Application/src/main/res/layout/
list_item.xml 20 (this CheckableLinearLayout) to "checked". Note that this requires that the root view
21 implements the Checkable interface. Once the root view is checked, any children that
22 have the duplicateParentState attribute set will inherit this "checked" state.
37 is checked or unchecked.
50 is checked or unchecked.
  /development/samples/Support7Demos/res/layout/
action_bar_fragment_menu.xml 32 android:checked="true"
39 android:checked="true"
46 android:checked="true"
53 android:checked="true"
60 android:checked="true"
  /development/samples/browseable/CustomChoiceList/res/layout/
list_item.xml 20 (this CheckableLinearLayout) to "checked". Note that this requires that the root view
21 implements the Checkable interface. Once the root view is checked, any children that
22 have the duplicateParentState attribute set will inherit this "checked" state.
37 is checked or unchecked.
50 is checked or unchecked.
  /frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/items/
SwitchItem.java 51 public void setChecked(boolean checked) {
52 if (mChecked != checked) {
53 mChecked = checked;
56 mListener.onCheckedChange(this, checked);
71 * Toggle the checked state of the switch, without invalidating the entire item.
  /external/chromium-trace/catapult/dashboard/dashboard/templates/
edit_sheriffs.html 37 * Handler for when "Edit existing sheriff" is checked.
41 document.getElementById('edit-radio').checked = true;
52 document.getElementById('internal-only-' + internalOnly).checked = true;
55 document.getElementById('summarize-' + summarize).checked = true;
62 * Handler for when "Add a new config" is checked; clears the form.
65 document.getElementById('add-radio').checked = true;
69 document.getElementById('internal-only-yes').checked = true;
70 document.getElementById('summarize-no').checked = true;
114 <input type="radio" name="add-edit" id="add-radio" value="add" checked>
147 value="true" checked>yes</label
    [all...]
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
DetailsPresenterSelectionActivity.java 65 long id, String title, String desc, boolean checked) {
71 .checked(checked)
99 boolean checked = false;
102 checked = true;
106 checked = true;
110 OPTION_DESCRIPTIONS[i], checked);
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
dom_helpers.html 190 radioEl.checked = true;
200 spanEl.__defineSetter__('checked', function(opt_bool) {
201 var changed = radioEl.checked !== (!!opt_bool);
205 radioEl.checked = !!opt_bool;
208 spanEl.__defineGetter__('checked', function() {
209 return radioEl.checked;
234 buttonEl.checked = !!initialValue;
239 tr.b.Settings.set(settingsKey, buttonEl.checked);
241 targetEl[targetElProperty] = buttonEl.checked;
259 spanEl.__defineSetter__('checked', function(opt_bool)
    [all...]
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ListViewModalSelect/Application/src/main/java/com/example/android/actionbarcompat/listviewmodalselect/
CheeseListFragment.java 76 // Allow the Controller to save it's instance state so that any checked items are
93 boolean checked) {
115 // Here we retrieve which positions are currently checked, then iterate through the
116 // list and remove the checked items. Once finished we notify the adapter to update
119 // Retrieve which positions are currently checked
123 // Check to see if there are any checked items
128 // Iterate through the items and remove any which are checked
135 // Remove the item if it is checked (and increment position)
141 // Clear the ListView's checked items
147 // As we're removing all of checked items, we'll close the action mod
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
OrientationMenuAction.java 101 boolean checked = mode == selected;
102 SelectNightModeAction action = new SelectNightModeAction(mode, checked);
111 boolean checked = mode == selected;
112 SelectUiModeAction action = new SelectUiModeAction(mode, checked);
124 private SelectNightModeAction(NightMode mode, boolean checked) {
127 if (checked) {
143 private SelectUiModeAction(UiMode mode, boolean checked) {
146 if (checked) {
163 State state, boolean checked, boolean flip) {
167 if (checked) {
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/actionbarcompat/
MultiSelectionUtil.java 61 * that item's checked state.
73 // Keeps record of any items that should be checked on the next action mode creation
166 // We found some IDs that were checked. Let's now restore the multi-selection
194 // Notify the listener that the item has been checked
220 // Clear all the checked items
240 // Check to see what the new checked state is, and then notify the listener
241 final boolean checked = mListView.isItemChecked(position);
242 mListener.onItemCheckedStateChanged(mActionMode, position, id, checked);
244 boolean hasCheckedItem = checked;
246 // Check to see if we have any checked item
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
EnableCollectionTest.java 55 * as value of static field of this class which (field) represents checked object.
58 * unload checked object and checks if checked object is unloaded.
73 ("=> Send ReferenceType::Fields command and get fieldID for field representing checked object...");
97 logWriter.println("=> Returned field value tag for checked object= " + checkedObjectFieldTag
99 assertEquals("invalid value tag for checked object,", JDWPConstants.Tag.OBJECT_TAG, checkedObjectFieldTag
104 logWriter.println("=> Returned checked ObjectID = " + checkedObjectID);
107 ("\n=> Send ObjectReference::DisableCollection command for checked ObjectID...");
119 ("\n=> CHECK: Send " + thisCommandName + " for checked ObjectID...");
132 logWriter.println("=> Send to Debuggee signal to continue and try to unload checked ObjectID...")
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckMethodAdapter.java 682 * @param value the value to be checked.
705 * @param opcode the opcode to be checked.
717 * @param value the value to be checked.
730 * @param value the value to be checked.
743 * @param value the value to be checked.
757 * @param cst the value to be checked.
771 * @param name the string to be checked.
781 * @param name the string to be checked.
816 * @param name the string to be checked.
846 * @param name the string to be checked.
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
CorpusView.java 74 public void setChecked(boolean checked) {
75 if (mChecked != checked) {
76 mChecked = checked;
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
CompoundButtonItem.java 80 public void setChecked(boolean checked) {
81 if (mChecked != checked) {
82 mChecked = checked;

Completed in 1320 milliseconds

1 2 3 45 6 7 8 91011>>