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

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/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.
  /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
  /libcore/luni/src/main/java/java/lang/reflect/
UndeclaredThrowableException.java 21 * This class provides a wrapper for an undeclared, checked exception thrown by
34 * undeclared, checked exception that occurred.
37 * the undeclared, checked exception that occurred
46 * undeclared, checked exception that occurred and a message.
51 * the undeclared, checked exception that occurred
61 * Returns the undeclared, checked exception that occurred, which may be
64 * @return the undeclared, checked exception that occurred
71 * Returns the undeclared, checked exception that occurred, which may be
74 * @return the undeclared, checked exception that occurred
  /external/chromium_org/content/public/common/
menu_item.cc 15 checked(false) {
26 checked(item.checked),
  /dalvik/dx/tests/040-dex-constructor/
info.txt 3 file are not checked for correctness. This test is of a classfile with
  /external/chromium_org/third_party/widevine/cdm/
README.chromium 8 Chrome. No third-party files are checked in here.
  /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);
  /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_org/third_party/WebKit/Source/wtf/
CheckedArithmetic.h 36 /* Checked<T>
43 * - The default is Checked<T, CrashOnOverflow>, and crashes at the point
45 * - The alternative is Checked<T, RecordOverflow>, which uses an additional
60 * Checked<T> works for all integer types, with the following caveats:
113 template <typename T, class OverflowHandler = CrashOnOverflow> class Checked;
115 template <typename T> struct RemoveChecked<Checked<T> >;
181 template <typename T> struct RemoveChecked<Checked<T, CrashOnOverflow> > {
186 template <typename T> struct RemoveChecked<Checked<T, RecordOverflow> > {
422 template <typename T, class OverflowHandler> class Checked : public OverflowHandler {
424 template <typename _T, class _OverflowHandler> friend class Checked;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
options.js 11 // Initialize the checkbox checked state from the saved preference.
15 checkbox.checked = useNotifications;
18 function() {prefs.setUseNotifications(checkbox.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/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
  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
example.js 25 var checked = document.getElementById('drawPoints').checked;
27 'value' : checked});
31 var checked = document.getElementById('drawInteriors').checked;
33 'value' : checked});
  /external/chromium_org/ui/views/controls/button/
checkbox.h 29 // Sets/Gets whether or not the checkbox is checked.
30 virtual void SetChecked(bool checked);
31 bool checked() const { return checked_; } function in class:views::Checkbox
43 // [checked] or [focused].
44 void SetCustomImage(bool checked,
57 // True if the checkbox is 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.
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_view.html 8 <li id=timeline-view-open-sockets><label><input type=checkbox checked>
11 <li id=timeline-view-in-use-sockets><label><input type=checkbox checked>
14 <li id=timeline-view-url-requests><label><input type=checkbox checked>
17 <li id=timeline-view-dns-requests><label><input type=checkbox checked>
20 <li id=timeline-view-dns-jobs><label><input type=checkbox checked>
23 <li id=timeline-view-bytes-received><label><input type=checkbox checked>
26 <li id=timeline-view-bytes-sent><label><input type=checkbox checked>
29 <li id=timeline-view-disk-cache-bytes-read><label><input type=checkbox checked>

Completed in 1661 milliseconds

1 2 3 4 5 6 7 8 91011>>