/frameworks/base/libs/audioflinger/ |
Android.mk | 3 #AUDIO_POLICY_TEST := true 4 #ENABLE_AUDIO_DUMP := true 9 ifeq ($(AUDIO_POLICY_TEST),true) 10 ENABLE_AUDIO_DUMP := true 19 ifeq ($(ENABLE_AUDIO_DUMP),true) 31 ifeq ($(strip $(BOARD_USES_GENERIC_AUDIO)),true) 37 ifeq ($(BOARD_HAVE_BLUETOOTH),true) 57 ifeq ($(TARGET_SIMULATOR),true) 65 ifeq ($(BOARD_HAVE_BLUETOOTH),true) 69 ifeq ($(AUDIO_POLICY_TEST),true) [all...] |
/external/stlport/test/unit/ |
logic_test.cpp | 35 bool input1 [4] = { true, true, false, true }; 36 bool input2 [4] = { false, true, false, false }; 42 CPPUNIT_ASSERT(output[1]==true); 55 bool input1 [4] = { true, true, false, true }; 56 bool input2 [4] = { false, true, false, false }; 61 CPPUNIT_ASSERT(output[0]==true); [all...] |
/external/icu4c/i18n/ |
regexcst.h | 132 {doNOP, 0, 0, 0, TRUE} 134 , {doLiteralChar, 254, 14,0, TRUE} // 2 term 135 , {doLiteralChar, 129, 14,0, TRUE} // 3 136 , {doSetBegin, 91 /* [ */, 104, 182, TRUE} // 4 137 , {doNOP, 40 /* ( */, 27,0, TRUE} // 5 138 , {doDotAny, 46 /* . */, 14,0, TRUE} // 6 139 , {doCaret, 94 /* ^ */, 14,0, TRUE} // 7 140 , {doDollar, 36 /* $ */, 14,0, TRUE} // 8 141 , {doNOP, 92 /* \ */, 84,0, TRUE} // 9 142 , {doOrOperator, 124 /* | */, 2,0, TRUE} // 10 [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/ |
properties-001.js | 18 AddRegExpCases( /[\d]{5}/g, "[\\d]{5}", true, false, false, 0 ); 19 AddRegExpCases( /[\S]?$/i, "[\\S]?$", false, true, false, 0 ); 20 AddRegExpCases( /^([a-z]*)[^\w\s\f\n\r]+/m, "^([a-z]*)[^\\w\\s\\f\\n\\r]+", false, false, true, 0 ); 21 AddRegExpCases( /[\D]{1,5}[\ -][\d]/gi, "[\\D]{1,5}[\\ -][\\d]", true, true, false, 0 ); 22 AddRegExpCases( /[a-zA-Z0-9]*/gm, "[a-zA-Z0-9]*", true, false, true, 0 ); 23 AddRegExpCases( /x|y|z/gim, "x|y|z", true, true, true, 0 ) [all...] |
/frameworks/base/core/res/res/drawable/ |
btn_check.xml | 21 <item android:state_checked="true" android:state_window_focused="false" 22 android:state_enabled="true" 25 android:state_enabled="true" 28 <item android:state_checked="true" android:state_pressed="true" 29 android:state_enabled="true" 31 <item android:state_checked="false" android:state_pressed="true" 32 android:state_enabled="true" 35 <item android:state_checked="true" android:state_focused="true" [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.9.1.js | 67 // type x and type y are the same. if type x is undefined or null, return true 69 array[item++] = new TestCase( SECTION, "void 0 = void 0", true, void 0 == void 0 ); 70 array[item++] = new TestCase( SECTION, "null == null", true, null == null ); 80 // if x is the same number value as y, return true. 82 array[item++] = new TestCase( SECTION, "Number.MAX_VALUE == Number.MAX_VALUE", true, Number.MAX_VALUE == Number.MAX_VALUE ); 83 array[item++] = new TestCase( SECTION, "Number.MIN_VALUE == Number.MIN_VALUE", true, Number.MIN_VALUE == Number.MIN_VALUE ); 84 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY == Number.POSITIVE_INFINITY", true, Number.POSITIVE_INFINITY == Number.POSITIVE_INFINITY ); 85 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY == Number.NEGATIVE_INFINITY", true, Number.NEGATIVE_INFINITY == Number.NEGATIVE_INFINITY ); 87 // if xis 0 and y is -0, return true. if x is -0 and y is 0, return true [all...] |
11.9.3.js | 66 // type x and type y are the same. if type x is undefined or null, return true 68 array[item++] = new TestCase( SECTION, "void 0 = void 0", true, void 0 == void 0 ); 69 array[item++] = new TestCase( SECTION, "null == null", true, null == null ); 79 // if x is the same number value as y, return true. 81 array[item++] = new TestCase( SECTION, "Number.MAX_VALUE == Number.MAX_VALUE", true, Number.MAX_VALUE == Number.MAX_VALUE ); 82 array[item++] = new TestCase( SECTION, "Number.MIN_VALUE == Number.MIN_VALUE", true, Number.MIN_VALUE == Number.MIN_VALUE ); 83 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY == Number.POSITIVE_INFINITY", true, Number.POSITIVE_INFINITY == Number.POSITIVE_INFINITY ); 84 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY == Number.NEGATIVE_INFINITY", true, Number.NEGATIVE_INFINITY == Number.NEGATIVE_INFINITY ); 86 // if xis 0 and y is -0, return true. if x is -0 and y is 0, return true [all...] |
11.8.3.js | 55 array[item++] = new TestCase( SECTION, "true <= false", false, true <= false ); 56 array[item++] = new TestCase( SECTION, "false <= true", true, false <= true ); 57 array[item++] = new TestCase( SECTION, "false <= false", true, false <= false ); 58 array[item++] = new TestCase( SECTION, "true <= true", true, true <= true ) [all...] |
11.8.1.js | 56 array[item++] = new TestCase( SECTION, "true < false", false, true < false ); 57 array[item++] = new TestCase( SECTION, "false < true", true, false < true ); 59 array[item++] = new TestCase( SECTION, "true < true", false, true < true ); 61 array[item++] = new TestCase( SECTION, "new Boolean(true) < new Boolean(true)", false, new Boolean(true) < new Boolean(true) ) [all...] |
11.8.4.js | 56 array[item++] = new TestCase( SECTION, "true >= false", true, true >= false ); 57 array[item++] = new TestCase( SECTION, "false >= true", false, false >= true ); 58 array[item++] = new TestCase( SECTION, "false >= false", true, false >= false ); 59 array[item++] = new TestCase( SECTION, "true >= true", true, true >= true ) [all...] |
/bootable/recovery/etc/META-INF/com/google/android/ |
update-script | 1 assert compatible_with("0.1") == "true" 2 assert file_contains("SYSTEM:build.prop", "ro.product.device=dream") == "true" || file_contains("SYSTEM:build.prop", "ro.build.product=dream") == "true" 3 assert file_contains("RECOVERY:default.prop", "ro.product.device=dream") == "true" || file_contains("RECOVERY:default.prop", "ro.build.product=dream") == "true"
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
BooleanTest.java | 39 assertEquals(1231, Boolean.TRUE.hashCode()); 53 assertEquals(Boolean.TRUE, new Boolean("TRUE")); 54 assertEquals(Boolean.TRUE, new Boolean("true")); 55 assertEquals(Boolean.TRUE, new Boolean("True")); 71 assertEquals(Boolean.TRUE, new Boolean(true)); 85 assertTrue(Boolean.TRUE.booleanValue()) [all...] |
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ulimits.h | 35 static const bool is_signed = false; ///< True if the type is signed. 36 static const bool is_integer = false; ///< True if stores an exact value. 37 static const bool is_integral = false; ///< True if fixed size and cast-copyable. 47 static const bool is_integer = true; 48 static const bool is_integral = true; 64 _NUMERIC_LIMITS (bool, false, true, false, true, true); 65 _NUMERIC_LIMITS (char, SCHAR_MIN, SCHAR_MAX, true, true, true) [all...] |
/frameworks/base/api/ |
8.xml | 8 final="true" 24 static="true" 25 final="true" 42 static="true" 43 final="true" 53 static="true" 54 final="true" 64 static="true" 65 final="true" 75 static="true" [all...] |
current.xml | 8 final="true" 24 static="true" 25 final="true" 42 static="true" 43 final="true" 53 static="true" 54 final="true" 64 static="true" 65 final="true" 75 static="true" [all...] |
7.xml | 8 final="true" 24 static="true" 25 final="true" 42 static="true" 43 final="true" 53 static="true" 54 final="true" 64 static="true" 65 final="true" 75 static="true" [all...] |
6.xml | 8 final="true" 24 static="true" 25 final="true" 42 static="true" 43 final="true" 53 static="true" 54 final="true" 64 static="true" 65 final="true" 75 static="true" [all...] |
5.xml | 8 final="true" 24 static="true" 25 final="true" 42 static="true" 43 final="true" 53 static="true" 54 final="true" 64 static="true" 65 final="true" 75 static="true" [all...] |
4.xml | 8 final="true" 24 static="true" 25 final="true" 42 static="true" 43 final="true" 53 static="true" 54 final="true" 64 static="true" 65 final="true" 75 static="true" [all...] |
/external/webkit/WebKit/win/WebKit.vcproj/ |
Interfaces.vcproj | 48 MinimalRebuild="true"
53 Detect64BitPortabilityProblems="true"
118 Detect64BitPortabilityProblems="true"
159 ExcludedFromBuild="true"
167 ExcludedFromBuild="true"
179 ExcludedFromBuild="true"
187 ExcludedFromBuild="true"
199 ExcludedFromBuild="true"
207 ExcludedFromBuild="true"
219 ExcludedFromBuild="true"
[all...] |
/external/icu4c/test/intltest/ |
tsputil.cpp | 110 maxMinTest(pinf, ninf, pinf, TRUE); 114 maxMinTest(pinf, pzero, pinf, TRUE); 116 maxMinTest(pinf, nzero, pinf, TRUE); 120 maxMinTest(ninf, pzero, pzero, TRUE); 122 maxMinTest(ninf, nzero, nzero, TRUE); 126 maxMinTest(pinf, nan, nan, TRUE); 128 maxMinTest(ninf, nan, nan, TRUE); 132 maxMinTest(nan, nan, nan, TRUE); 136 maxMinTest(nan, pzero, nan, TRUE); 138 maxMinTest(nan, nzero, nan, TRUE); [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
PredicatesTest.java | 26 private static final Predicate<Object> TRUE = new Predicate<Object>() { 28 return true; 39 assertTrue(Predicates.and(newArrayList(TRUE)).apply(null)); 40 assertTrue(Predicates.and(newArrayList(TRUE, TRUE)).apply(null)); 44 assertFalse(Predicates.and(newArrayList(FALSE, TRUE, TRUE)).apply(null)); 45 assertFalse(Predicates.and(newArrayList(TRUE, FALSE, TRUE)).apply(null)); 46 assertFalse(Predicates.and(newArrayList(TRUE, TRUE, FALSE)).apply(null)) [all...] |
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
AtomicBooleanTest.java | 27 AtomicBoolean ai = new AtomicBoolean(true); 28 assertEquals(true,ai.get()); 43 AtomicBoolean ai = new AtomicBoolean(true); 44 assertEquals(true,ai.get()); 47 ai.set(true); 48 assertEquals(true,ai.get()); 56 AtomicBoolean ai = new AtomicBoolean(true); 57 assertTrue(ai.compareAndSet(true,false)); 61 assertFalse(ai.compareAndSet(true,false)); 63 assertTrue(ai.compareAndSet(false,true)); [all...] |
/sdk/emulator/qtools/ |
parse_options.cpp | 27 bool demangle = true; 60 exclude_kernel_syms = true; 62 exclude_library_syms = true; 64 err = true; 66 exclude_some_procedures = true; 70 exclude_some_pids = true; 73 exclude_some_procedures = true; 79 include_kernel_syms = true; 81 include_library_syms = true; 83 err = true; [all...] |
/external/v8/test/mjsunit/ |
double-equals.js | 29 * This test uses assert{True,False}(... == ...) instead of 59 assertTrue (true == true, "true == true"); 61 assertFalse(true == false, "true == false"); 62 assertFalse(false == true, "false == true"); 65 assertFalse(new Boolean(true) == new Boolean(true), "new Boolean(true) == new Boolean(true)") [all...] |