HomeSort by relevance Sort by last modified time
    Searched full:boolean (Results 51 - 75 of 13540) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/dom/
WheelEvent.idl 29 readonly attribute boolean ctrlKey;
30 readonly attribute boolean shiftKey;
31 readonly attribute boolean altKey;
32 readonly attribute boolean metaKey;
44 readonly attribute boolean isHorizontal;
55 in boolean ctrlKey,
56 in boolean altKey,
57 in boolean shiftKey,
58 in boolean metaKey);
69 in boolean ctrlKey
    [all...]
  /cts/tests/src/android/app/cts/
TestDialog.java 42 public boolean isOnStartCalled;
43 public boolean isOnStopCalled;
44 public boolean isOnCreateCalled;
45 public boolean isRequestWindowFeature;
46 public boolean isOnContentChangedCalled;
47 public boolean isOnWindowFocusChangedCalled;
48 public boolean isOnTouchEventCalled;
49 public boolean isOnTrackballEventCalled;
50 public boolean isOnKeyDownCalled;
51 public boolean isOnKeyUpCalled
    [all...]
AppStubActivity.java 36 public boolean mOnPrepareDialog;
37 public boolean mOnOptionsMenuClosedCalled;
38 public boolean mOnPrepareOptionsMenuCalled;
39 public boolean mOnOptionsItemSelectedCalled;
40 public boolean mOnCreateOptionsMenu;
41 public boolean mIndterminate = false;
42 public boolean mIndterminatevisibility = false;
43 public boolean mSecPro = false;
44 public boolean mOnContextItemSelectedCalled;
45 public boolean mOnCreateContextMenu
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap.h 49 Boolean eapResp; /* shared with EAPOL Backend Authentication */
51 Boolean portEnabled;
53 Boolean eapRestart; /* shared with EAPOL Authenticator PAE */
58 Boolean eapReq; /* shared with EAPOL Backend Authentication */
59 Boolean eapNoReq; /* shared with EAPOL Backend Authentication */
60 Boolean eapSuccess;
61 Boolean eapFail;
62 Boolean eapTimeout;
66 Boolean eapKeyAvailable; /* called keyAvailable in IEEE 802.1X-2004 */
69 Boolean aaaEapReq
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap.h 49 Boolean eapResp; /* shared with EAPOL Backend Authentication */
51 Boolean portEnabled;
53 Boolean eapRestart; /* shared with EAPOL Authenticator PAE */
58 Boolean eapReq; /* shared with EAPOL Backend Authentication */
59 Boolean eapNoReq; /* shared with EAPOL Backend Authentication */
60 Boolean eapSuccess;
61 Boolean eapFail;
62 Boolean eapTimeout;
66 Boolean eapKeyAvailable; /* called keyAvailable in IEEE 802.1X-2004 */
69 Boolean aaaEapReq
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
MethodListener.java 39 public void onInvokeV(String signature, boolean isNative, Object caller);
42 * Same as {@link #onInvokeV(String, boolean, Object)} but returns an integer or similar.
43 * @see #onInvokeV(String, boolean, Object)
44 * @return an integer, or a boolean, or a short or a byte.
46 public int onInvokeI(String signature, boolean isNative, Object caller);
49 * Same as {@link #onInvokeV(String, boolean, Object)} but returns a long.
50 * @see #onInvokeV(String, boolean, Object)
53 public long onInvokeL(String signature, boolean isNative, Object caller);
56 * Same as {@link #onInvokeV(String, boolean, Object)} but returns a float.
57 * @see #onInvokeV(String, boolean, Object
    [all...]
  /cts/tests/src/android/widget/cts/
MockTextView.java 31 private boolean mHasCalledOnCreateContextMenu;
32 private boolean mHasCalledOnFocusChanged;
33 private boolean mHasCalledOnMeasure;
34 private boolean mHasCalledOnTextChanged;
35 private boolean mHasCalledDrawableStateChanged;
36 private boolean mHasCalledOnWindowFocusChanged;
37 private boolean mHasCalledOnPrivateIMECommand;
38 private boolean mHasCalledOnKeyMultiple;
52 public boolean hasCalledOnWindowFocusChanged() {
56 public boolean hasCalledOnCreateContextMenu()
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
expression-014.js 21 var BOOLEAN = new Boolean();
29 result = new BOOLEAN();
37 "BOOLEAN = new Boolean(); result = new BOOLEAN()" +
  /packages/experimental/UiAutomation/service/src/com/android/testing/uiautomation/
Provider.aidl 25 boolean isEnabled(String selector);
26 boolean isFocused(String selector);
31 boolean click(String selector);
32 boolean setTextFieldByLabel(String label, String text);
33 boolean sendText(String text);
35 boolean checkUiVerificationEnabled();
  /frameworks/base/opengl/tools/glgen/src/
CType.java 20 boolean isConst;
21 boolean isPointer;
30 public CType(String baseType, boolean isConst, boolean isPointer) {
40 public void setIsConst(boolean isConst) {
44 public boolean isConst() {
48 public void setIsPointer(boolean isPointer) {
52 public boolean isPointer() {
56 boolean isVoid() {
62 public boolean isConstCharPointer()
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/if_eq/d/
T_if_eq_10.java 5 public boolean run(int a, int b) {
T_if_eq_11.java 5 public boolean run(String a, String b) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_eq/d/
T_if_eq_10.java 5 public boolean run(int a, int b) {
T_if_eq_11.java 5 public boolean run(String a, String b) {
  /external/llvm/test/FrontendAda/Support/
fat_fields.ads 3 type A is array (Positive range <>) of Boolean;
  /external/llvm/test/FrontendAda/
array_constructor.adb 3 A : array (Integer range <>) of Boolean := (True, False);
  /external/nist-sip/java/javax/sip/address/
Hop.java 8 boolean isURIRoute();
URI.java 7 boolean isSipURI();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/instanceof/
instanceof-001.js 19 var b = new Boolean();
22 "var b = new Boolean(); b instanceof Boolean",
24 b instanceof Boolean );
  /external/webkit/Source/WebCore/html/
ValidityState.idl 26 readonly attribute boolean valueMissing;
27 readonly attribute boolean typeMismatch;
28 readonly attribute boolean patternMismatch;
29 readonly attribute boolean tooLong;
30 readonly attribute boolean rangeUnderflow;
31 readonly attribute boolean rangeOverflow;
32 readonly attribute boolean stepMismatch;
33 readonly attribute boolean customError;
34 readonly attribute boolean valid;
  /frameworks/base/packages/WAPPushManager/
proguard.flags 13 public boolean isDataExist(java.lang.String, java.lang.String,
15 public boolean verifyData(java.lang.String, java.lang.String,
16 java.lang.String, java.lang.String, int, boolean, boolean);
  /external/guava/src/com/google/common/primitives/
Booleans.java 37 * Static utility methods pertaining to {@code boolean} primitives, that are not
38 * already found in either {@link Boolean} or {@link Arrays}.
49 * {@code ((Boolean) value).hashCode()}.
51 * @param value a primitive {@code boolean} value
54 public static int hashCode(boolean value) {
59 * Compares the two specified {@code boolean} values in the standard way
61 * value returned is the same as that of {@code ((Boolean) a).compareTo(b)}.
63 * @param a the first {@code boolean} to compare
64 * @param b the second {@code boolean} to compare
68 public static int compare(boolean a, boolean b)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiNative.java 55 public native static boolean loadDriver();
57 public native static boolean isDriverLoaded();
59 public native static boolean unloadDriver();
61 public native static boolean startSupplicant();
63 public native static boolean startP2pSupplicant();
71 public native static boolean stopSupplicant();
75 public native static boolean killSupplicant();
77 public native static boolean connectToSupplicant();
81 public native static boolean pingCommand();
83 public native static boolean scanCommand(boolean forceActive)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DocumentBuilderSettingStrategy.java 33 public boolean hasConflict(DocumentBuilderSettingStrategy other) {
39 boolean value) throws DOMTestIncompatibleException;
41 public abstract boolean hasSetting(DOMTestDocumentBuilderFactory factory);
45 public void applySetting(DocumentBuilderFactory factory, boolean value)
50 public boolean hasSetting(DOMTestDocumentBuilderFactory factory) {
59 public void applySetting(DocumentBuilderFactory factory, boolean value)
64 public boolean hasSetting(DOMTestDocumentBuilderFactory factory) {
72 public void applySetting(DocumentBuilderFactory factory, boolean value)
77 public boolean hasSetting(DOMTestDocumentBuilderFactory factory) {
84 public void applySetting(DocumentBuilderFactory factory, boolean value
    [all...]
  /frameworks/base/core/java/android/net/
IConnectivityManager.aidl 46 boolean isNetworkSupported(int networkType);
55 boolean setRadios(boolean onOff);
57 boolean setRadio(int networkType, boolean turnOn);
64 boolean requestRouteToHost(int networkType, int hostAddress);
66 boolean requestRouteToHostAddress(int networkType, in byte[] hostAddress);
68 boolean getMobileDataEnabled();
69 void setMobileDataEnabled(boolean enabled);
72 void setPolicyDataEnable(int networkType, boolean enabled)
    [all...]

Completed in 872 milliseconds

1 23 4 5 6 7 8 91011>>