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

1 2 3 4 5 6 7 8 91011>>

  /art/test/450-checker-types/
info.txt 1 Checker test for testing checked cast elimination.
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCheckedTextView.java 11 private boolean checked; field in class:ShadowCheckedTextView
15 checked = !checked;
20 return checked;
24 public void setChecked(boolean checked) {
25 this.checked = checked;
ShadowCompoundButton.java 11 * Keeps track of whether or not its "checked" state is set and deals with listeners in an appropriate way.
16 private boolean checked; field in class:ShadowCompoundButton
21 setChecked(this.attributeSet.getAttributeBooleanValue("android", "checked", false));
26 setChecked(!checked);
37 return checked;
41 @Override public void setChecked(boolean checked) {
42 if (this.checked != checked) {
43 this.checked = checked;
    [all...]
ShadowRadioButton.java 17 @Override public void setChecked(boolean checked) {
18 super.setChecked(checked);
22 checked state it's child RadioButtons. Feel free to implement properly.
  /art/test/506-verify-aput/
info.txt 1 Test that an aput on a null array is properly checked
  /external/apache-harmony/
README.android 3 Checked out thus:
7 Checked out revision 1097236.
  /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
  /art/test/479-regression-implicit-null-check/
info.txt 2 checked a different object. This lead to valid null checks being elided.
  /external/vboot_reference/
PRESUBMIT.cfg 4 # The indentation is checked by checkpatch not the python script
  /dalvik/dx/tests/040-dex-constructor/
info.txt 3 file are not checked for correctness. This test is of a classfile with
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
WrappedRuntimeException.java 24 * This class is for throwing important checked exceptions
25 * over non-checked methods. It should be used with care,
39 /** Primary checked exception.
45 * checked exception.
47 * @param e Primary checked exception
62 * @param e Primary checked exception
73 * Get the checked exception that this runtime exception wraps.
75 * @return The primary checked exception
  /external/apache-xml/src/main/java/org/apache/xml/utils/
WrappedRuntimeException.java 24 * This class is for throwing important checked exceptions
25 * over non-checked methods. It should be used with care,
32 /** Primary checked exception.
38 * checked exception.
40 * @param e Primary checked exception
55 * @param e Primary checked exception
66 * Get the checked exception that this runtime exception wraps.
68 * @return The primary checked exception
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/
CheckBroker.java 26 * Helper to keep checked state in sync.
34 * Listener for item checked state changes.
42 public abstract void setItemChecked(int position, boolean checked);
44 public void onCheckedChange(int position, boolean checked) {
45 if (isItemChecked(position) != checked) {
47 l.onCheckedChanged(position, checked);
  /packages/apps/Settings/src/com/android/settings/widget/
ToggleSwitch.java 28 public boolean onBeforeCheckedChanged(ToggleSwitch toggleSwitch, boolean checked);
52 public void setChecked(boolean checked) {
54 && mOnBeforeListener.onBeforeCheckedChanged(this, checked)) {
57 super.setChecked(checked);
60 public void setCheckedInternal(boolean checked) {
61 super.setChecked(checked);
  /frameworks/opt/setupwizard/library/eclair-mr1/test/src/com/android/setupwizardlib/test/
SwitchItemTest.java 46 assertTrue("Switch should be checked", mSwitch.isChecked());
77 assertTrue("Switch should be checked", mSwitch.isChecked());
81 assertFalse("Listener should not be checked", listener.checked);
86 assertTrue("Listener should be checked", listener.checked);
105 assertTrue("Switch should be checked", mSwitch.isChecked());
109 assertFalse("Listener should not be checked", listener.checked);
114 assertTrue("Listener should be checked", listener.checked)
163 public boolean checked = false; field in class:SwitchItemTest.TestOnCheckedChangeListener
    [all...]
  /developers/build/prebuilts/gradle/FloatingActionButtonBasic/Application/src/main/java/com/example/android/floatingactionbuttonbasic/
FloatingActionButton.java 34 * Interface definition for a callback to be invoked when the checked state
40 * Called when the checked state of a FAB has changed.
43 * @param isChecked The new checked state of buttonView.
57 // A boolean that tells if the FAB is checked or not.
96 * Sets the checked/unchecked state of the FAB.
97 * @param checked
99 public void setChecked(boolean checked) {
101 if (checked == mChecked) {
104 mChecked = checked;
110 mOnCheckedChangeListener.onCheckedChanged(this, checked);
    [all...]
  /developers/samples/android/ui/views/FloatingActionButton/FloatingActionButtonBasic/Application/src/main/java/com/example/android/floatingactionbuttonbasic/
FloatingActionButton.java 34 * Interface definition for a callback to be invoked when the checked state
40 * Called when the checked state of a FAB has changed.
43 * @param isChecked The new checked state of buttonView.
57 // A boolean that tells if the FAB is checked or not.
96 * Sets the checked/unchecked state of the FAB.
97 * @param checked
99 public void setChecked(boolean checked) {
101 if (checked == mChecked) {
104 mChecked = checked;
110 mOnCheckedChangeListener.onCheckedChanged(this, checked);
    [all...]
  /development/samples/browseable/FloatingActionButtonBasic/src/com.example.android.floatingactionbuttonbasic/
FloatingActionButton.java 34 * Interface definition for a callback to be invoked when the checked state
40 * Called when the checked state of a FAB has changed.
43 * @param isChecked The new checked state of buttonView.
57 // A boolean that tells if the FAB is checked or not.
96 * Sets the checked/unchecked state of the FAB.
97 * @param checked
99 public void setChecked(boolean checked) {
101 if (checked == mChecked) {
104 mChecked = checked;
110 mOnCheckedChangeListener.onCheckedChanged(this, checked);
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
checkbox_test.html 20 assert.isFalse(checkbox.checked);
26 checkbox.checked = true;
29 assert.isTrue(checkbox.checked);
38 assert.isFalse(checkbox.checked);
39 checkbox.checked = true;
46 assert.isTrue(checkbox2.checked);
55 assert.isFalse(checkbox.checked);
56 checkbox.checked = true;
63 assert.isTrue(checkbox2.checked);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListGetCheckItemIdsTest.java 63 assertChecked("None check choice has item checked");
70 assertChecked("Item checked when setting Single mode");
76 assertChecked("Only element " + i + " should be checked", i);
84 assertChecked("Only element " + i + " should be checked", i);
92 assertChecked("Item checked when setting Multiple mode");
98 assertChecked("First element non checked", 1);
101 assertChecked("Second element not checked", 1, 3);
104 assertChecked("Third element not checked", 0, 1, 3);
107 assertChecked("Unchecked element appears checked", 0, 1, 3);
122 assertChecked("Checked items after last element unchecked")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_checkretval.py 5 class CHECKED(c_int):
7 # Receives a CHECKED instance.
19 dll._testfunc_p_p.restype = CHECKED
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_checkretval.py 5 class CHECKED(c_int):
7 # Receives a CHECKED instance.
19 dll._testfunc_p_p.restype = CHECKED
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_checkretval.py 5 class CHECKED(c_int):
7 # Receives a CHECKED instance.
19 dll._testfunc_p_p.restype = CHECKED
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_checkretval.py 5 class CHECKED(c_int):
7 # Receives a CHECKED instance.
19 dll._testfunc_p_p.restype = CHECKED
  /dalvik/dx/tests/034-dex-minimal/
info.txt 4 --no-files option. The output dump of this is checked to make sure it
9 converted file are not checked for correctness.

Completed in 1043 milliseconds

1 2 3 4 5 6 7 8 91011>>