HomeSort by relevance Sort by last modified time
    Searched defs:TRUE (Results 51 - 75 of 582) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/services/BuiltInPrintService/jni/plugins/
wprint_image_platform.h 28 #ifndef TRUE
29 #define TRUE 1
  /toolchain/binutils/binutils-2.27/gas/config/
obj-som.h 35 #define TRUE !FALSE
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCameraSettings.java 28 private static final String TRUE = "true";
66 setRecordingHintEnabled(TRUE.equals(params.get(RECORDING_HINT)));
  /libcore/luni/src/test/java/libcore/java/lang/
BooleanTest.java 21 assertSame(Boolean.TRUE, Boolean.valueOf(true));
22 assertTrue(Boolean.TRUE.booleanValue());
31 assertEquals(0, Boolean.compare(true, true));
33 assertTrue(Boolean.compare(false, true) < 0);
34 assertTrue(Boolean.compare(true, false) > 0);
38 assertEquals(Boolean.TRUE.hashCode(), Boolean.hashCode(true));
43 assertTrue(Boolean.logicalAnd(Boolean.TRUE, Boolean.TRUE))
    [all...]
OldAndroidBooleanTest.java 27 Boolean a = new Boolean(true);
28 Boolean b = new Boolean("True");
36 assertEquals("true", a.toString());
38 assertEquals(Boolean.TRUE, a);
40 assertSame(Boolean.valueOf(true), Boolean.TRUE);
  /external/curl/docs/examples/
multi-debugcallback.c 38 #define TRUE 1
122 dump(text, stderr, data, size, TRUE);
  /external/e2fsprogs/lib/ss/
test_ss.c 29 #define TRUE 1
  /external/ltp/testcases/kernel/io/direct_io/
diotest1.c 53 #define TRUE 1
  /external/ltp/testcases/kernel/syscalls/clone/
clone07.c 33 #define TRUE 1
127 fail = TRUE;
  /external/mesa3d/src/gallium/include/pipe/
p_compiler.h 53 /* Avoid 'expression is always true' warning */
84 #ifndef TRUE
85 #define TRUE true
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
gsm_amr_typedefs.h 103 #ifndef TRUE
104 #define TRUE 1
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
TestPredicatesTest.java 77 private static final Predicate<Object> TRUE = new Predicate<Object>() {
79 return true;
91 assertFalse(TestPredicates.not(TRUE).apply(null));
  /hardware/qcom/bt/msm8909/libbt-vendor/include/
bt_vendor_qcom.h 28 #ifndef TRUE
29 #define TRUE (!FALSE)
57 Default TRUE .
60 #define HW_NEED_END_WITH_HCI_RESET TRUE
  /hardware/qcom/bt/msm8992/libbt-vendor/include/
bt_vendor_qcom.h 31 #ifndef TRUE
32 #define TRUE (!FALSE)
52 Default TRUE .
55 #define HW_NEED_END_WITH_HCI_RESET TRUE
  /hardware/qcom/bt/msm8996/libbt-vendor/include/
bt_vendor_qcom.h 28 #ifndef TRUE
29 #define TRUE (!FALSE)
57 Default TRUE .
60 #define HW_NEED_END_WITH_HCI_RESET TRUE
  /hardware/qcom/display/msm8960/libgralloc/
gr.h 46 #define TRUE 1
  /libcore/ojluni/src/main/java/java/lang/
Boolean.java 48 * value {@code true}.
50 public static final Boolean TRUE = new Boolean(true);
93 * {@code true} if the string argument is not {@code null}
94 * and is equal, ignoring case, to the string {@code "true"}.
97 * {@code new Boolean("True")} produces a {@code Boolean} object
98 * that represents {@code true}.<br>
110 * returned represents the value {@code true} if the string argument
112 * {@code "true"}. <p>
113 * Example: {@code Boolean.parseBoolean("True")} returns {@code true}.<br
    [all...]
  /device/google/marlin/camera/mm-image-codec/qomx_core/
qomx_core.h 40 #define TRUE 1
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
replace.c 20 #define TRUE 1
121 Found = TRUE;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Boolean.java 12 * <li> ASN1Boolean.TRUE literal</li>
28 public static final ASN1Boolean TRUE = new ASN1Boolean(true);
63 * @param value true or false depending on the ASN1Boolean wanted.
69 return (value ? TRUE : FALSE);
74 * @param value non-zero (true) or zero (false) depending on the ASN1Boolean wanted.
80 return (value != 0 ? TRUE : FALSE);
90 return (octets[0] != 0) ? TRUE : FALSE;
98 * @param explicit true if the object is meant to be explicitly
144 * @param value true or false
    [all...]
  /external/clang/test/Sema/
enable_if.c 8 const int TRUE = 1;
123 void f2(void) __attribute__((overloadable)) __attribute__((enable_if(TRUE, "always chosen #2")));
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/inc/
data_types.h 38 #ifndef TRUE
39 #define TRUE (!FALSE)
  /external/libxml2/include/
win32config.h 117 #if !defined(TRUE)
118 #define TRUE (!(FALSE))
  /external/libxml2/
testOOMlib.c 19 #ifndef TRUE
20 #define TRUE (1)
81 * it returns #TRUE, then the allocation should
85 * returns #TRUE if this alloc should fail
100 return TRUE;
222 return TRUE;
233 * the test fails. The function should return #TRUE whenever something
237 * Returns #TRUE if the function never returns FALSE
268 return TRUE;
  /external/libxml2/win32/VC10/
config.h 116 #if !defined(TRUE)
117 #define TRUE (!(FALSE))

Completed in 744 milliseconds

1 23 4 5 6 7 8 91011>>