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

1 2 3 4 5 6 7 8 91011>>

  /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
CompoundButton.java 35 * A button with two states, checked and unchecked. When the button is pressed
79 boolean checked = a
81 setChecked(checked);
109 * <p>Changes the checked state of this button.</p>
111 * @param checked true to check the button, false to uncheck it
113 public void setChecked(boolean checked) {
114 if (mChecked != checked) {
115 mChecked = checked;
137 * Register a callback to be invoked when the checked state of this button
140 * @param listener the callback to call on checked state chang
287 boolean checked; field in class:CompoundButton.SavedState
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
destroy-selected-radio-button-crash.html 8 document.getElementById('radio').checked = true;
12 <div>This tests that destroying a checked radio button that does not have a form correctly removes the radio button element from the checked radio buttons map. This test should ideally be run with GuardMalloc or a similar memory checker.</div>
14 <div id="container"><input name="a" type="radio" checked></div>
  /external/chromium/webkit/glue/
webmenuitem.cc 13 checked(false) {
23 checked(item.checked) {
33 checked(item.checked),
webthemeengine_impl_win.cc 40 extra->checked = false;
46 extra->checked = false;
52 extra->checked = false;
58 extra->checked = false;
64 extra->checked = false;
70 extra->checked = false;
81 extra->checked = false;
87 extra->checked = false;
93 extra->checked = false;
99 extra->checked = false
    [all...]
  /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/chrome/common/extensions/docs/examples/extensions/buildbot/
options.html 8 prefs.use_notifications = document.getElementById("notifications").checked;
12 // Make sure the checkbox checked state gets properly initialized from the
16 document.getElementById("notifications").checked = prefs.use_notifications;
  /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
  /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...]
  /external/chromium/chrome/browser/resources/options/
advanced_options.js 48 [String(event.target.checked)]);
94 [String($('promptForDownload').checked)]);
106 [String($('sslCheckRevocation').checked)]);
110 [String($('sslUseSSL3').checked)]);
114 [String($('sslUseTLS1').checked)]);
151 // Set the checked state of the metrics reporting checkbox.
153 checked, disabled) {
154 $('metricsReportingEnabled').checked = checked;
199 AdvancedOptions.SetPromptForDownload = function(checked, disabled)
    [all...]
certificate_edit_ca_trust_overlay.js 51 // TODO(mattm): Send checked values as booleans. For now send them as
55 $('certificateCaTrustSSLCheckbox').checked.toString(),
56 $('certificateCaTrustEmailCheckbox').checked.toString(),
57 $('certificateCaTrustObjSignCheckbox').checked.toString()]);
76 // TODO(mattm): Send checked values as booleans. For now send them as
79 [$('certificateCaTrustSSLCheckbox').checked.toString(),
80 $('certificateCaTrustEmailCheckbox').checked.toString(),
81 $('certificateCaTrustObjSignCheckbox').checked.toString()]);
103 $('certificateCaTrustSSLCheckbox').checked = trustSSL;
104 $('certificateCaTrustEmailCheckbox').checked = trustEmail
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
Checkbox.js 40 set checked(checked)
42 this._inputElement.checked = checked;
45 get checked()
47 return this._inputElement.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/webkit/LayoutTests/dom/html/level2/html/
HTMLInputElement21.js 78 HTMLInputElement.click should change the state of checked on a radio button.
89 var checked;
99 checked = testNode.checked;
101 assertFalse("notCheckedBeforeClick",checked);
103 checked = testNode.checked;
105 assertTrue("checkedAfterClick",checked);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLInputElement21.js 78 HTMLInputElement.click should change the state of checked on a radio button.
89 var checked;
99 checked = testNode.checked;
101 assertFalse("notCheckedBeforeClick",checked);
103 checked = testNode.checked;
105 assertTrue("checkedAfterClick",checked);
  /frameworks/base/core/java/android/preference/
TwoStatePreference.java 72 * Sets the checked state and saves it to the {@link SharedPreferences}.
74 * @param checked The checked state.
76 public void setChecked(boolean checked) {
77 if (mChecked != checked) {
78 mChecked = checked;
79 persistBoolean(checked);
86 * Returns the checked state.
88 * @return The checked state.
101 * Sets the summary to be shown when checked
266 boolean checked; field in class:TwoStatePreference.SavedState
    [all...]
  /dalvik/dx/tests/032-bb-live-code/
info.txt 5 branch are checked for liveness as well.
  /dalvik/dx/tests/035-dex-instance-var/
info.txt 3 file are not checked for correctness. This test is of a classfile with
  /dalvik/dx/tests/036-dex-static-var/
info.txt 3 file are not checked for correctness. This test is of a classfile with
  /dalvik/dx/tests/037-dex-static-final-var/
info.txt 3 file are not checked for correctness. This test is of a classfile with
  /dalvik/dx/tests/038-dex-instance-method/
info.txt 3 file are not checked for correctness. This test is of a classfile with
  /dalvik/dx/tests/039-dex-static-method/
info.txt 3 file are not checked for correctness. This test is of a classfile with

Completed in 797 milliseconds

1 2 3 4 5 6 7 8 91011>>