/device/generic/x86_64/ |
BoardConfig.mk | 7 TARGET_NO_BOOTLOADER := true 8 TARGET_NO_KERNEL := true 18 TARGET_USES_64_BIT_BINDER := true 20 SMALLER_FONT_FOOTPRINT := true 21 MINIMAL_FONT_FOOTPRINT := true 25 BOARD_HAVE_BLUETOOTH := true 28 USE_OPENGL_RENDERER := true 30 BOARD_USE_LEGACY_UI := true 33 TARGET_USERIMAGES_USE_EXT4 := true 39 TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true [all...] |
/device/generic/mini-emulator-x86_64/ |
BoardConfig.mk | 10 BUILD_EMULATOR := true 11 BUILD_EMULATOR_OPENGL := true 12 BUILD_EMULATOR_OPENGL_DRIVER := true 17 TARGET_USERIMAGES_USE_EXT4 := true 23 TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
|
/build/core/combo/arch/mips/ |
mips32r2dsp-fp.mk | 4 ARCH_MIPS_HAS_DSP :=true 6 ARCH_MIPS_HAS_FPU :=true 7 ARCH_HAVE_ALIGNED_DOUBLES :=true
|
mips32r2dspr2-fp.mk | 4 ARCH_MIPS_HAS_DSP :=true 6 ARCH_MIPS_HAS_FPU :=true 7 ARCH_HAVE_ALIGNED_DOUBLES :=true
|
mips32-fp.mk | 4 ARCH_MIPS_HAS_FPU :=true 5 ARCH_HAVE_ALIGNED_DOUBLES :=true
|
mips32r2-fp.mk | 4 ARCH_MIPS_HAS_FPU :=true 5 ARCH_HAVE_ALIGNED_DOUBLES :=true
|
/external/v8/test/mjsunit/regress/ |
regress-3476.js | 12 assertEquals("truex", true + "x"); 13 assertEquals("truey", true + new String("y")); 14 assertEquals("truez", true + new MyWrapper("z")); 16 assertEquals("xtrue", "x" + true); 17 assertEquals("ytrue", new String("y") + true); 18 assertEquals("ztrue", new MyWrapper("z") + true);
|
/external/v8/test/webkit/ |
codegen-loops-logical-nodes.js | 32 return true; 42 return true; 52 return true; 62 return true; 72 return true; 82 return true; 92 return true; 102 return true; 111 return true; 120 return true; [all...] |
comparison-operators-greater.js | 34 result.push([new func("if (" + expr + ") return true; return false;"), resultValue]); 35 result.push([new func("var k = 0; while (" + expr + ") if (k++) return true; return false;"), resultValue]); 36 result.push([new func("var k = 0; for (; " + expr + "; ) if (k++) return true; return false;"), resultValue]); 40 var expressionParts = [["(",")"],["(", ") || 1", true],["(", ") && 1"],["(", ") || 1", true],["1 || (",")", true],["1 && (",")"]]; 115 shouldBeTrue("if (0 >= 0 || 0) true; else false"); 116 shouldBeTrue("if (1 >= 0 || 0) true; else false"); 117 shouldBeTrue("if (1 >= 1 || 0) true; else false"); 118 shouldBeTrue("if (0 < 1 || 0) true; else false") [all...] |
comparison-operators-less.js | 34 result.push([new func("if (" + expr + ") return true; return false;"), resultValue]); 35 result.push([new func("var k = 0; while (" + expr + ") if (k++) return true; return false;"), resultValue]); 36 result.push([new func("var k = 0; for (; " + expr + "; ) if (k++) return true; return false;"), resultValue]); 40 var expressionParts = [["(",")"],["(", ") || 1", true],["(", ") && 1"],["(", ") || 1", true],["1 || (",")", true],["1 && (",")"]]; 113 shouldBeTrue("if (0 <= 0 || 0) true; else false"); 114 shouldBeTrue("if (0 <= 1 || 0) true; else false"); 115 shouldBeTrue("if (1 <= 1 || 0) true; else false"); 116 shouldBeTrue("if (0 < 1 || 0) true; else false") [all...] |
array-type-speculation.js | 62 runWithPredicates([[true, true, "\"\\\"foo\\\"\""], [true, false, "\"\\\"foo\\\"\""], [false, true, "\"undefined\""], [false, false, "\"undefined\""]]); 63 runWithPredicates([[false, false, "\"undefined\""], [true, false, "\"\\\"foo\\\"\""], [false, true, "\"undefined\""], [true, true, "\"\\\"foo\\\"\""]]); 64 runWithPredicates([[true, true, "\"\\\"foo\\\"\""], [false, true, "\"undefined\""], [true, false, "\"\\\"foo\\\"\""], [false, fal (…) [all...] |
/build/core/combo/arch/mips64/ |
mips64r2.mk | 5 ARCH_MIPS_HAS_FPU :=true 6 ARCH_HAVE_ALIGNED_DOUBLES :=true
|
/frameworks/base/tests/SharedLibrary/lib/ |
Android.mk | 9 LOCAL_EXPORT_PACKAGE_RESOURCES := true 10 LOCAL_PRIVILEGED_MODULE := true
|
/hardware/qcom/camera/ |
common.mk | 4 ifeq ($(call is-vendor-board-platform,QCOM),true) 5 ifeq ($(TARGET_COMPILE_WITH_MSM_KERNEL),true)
|
/build/target/board/generic_x86_64/ |
BoardConfig.mk | 7 TARGET_NO_BOOTLOADER := true 8 TARGET_NO_KERNEL := true 18 TARGET_USES_64_BIT_BINDER := true 21 HAVE_HTC_AUDIO_DRIVER := true 22 BOARD_USES_GENERIC_AUDIO := true 25 USE_CAMERA_STUB := true 33 WITH_DEXPREOPT ?= true 37 BUILD_EMULATOR_OPENGL := true 41 USE_OPENGL_RENDERER := true 43 TARGET_USERIMAGES_USE_EXT4 := true [all...] |
/external/skia/tools/lua/ |
chars-vs-glyphs.lua | 15 drawPosText = true, 16 drawPosTextH = true, 17 drawText = true, 18 drawTextOnPath = true,
|
/ndk/tests/build/warn-thin-archive-is-for-static-libraries/jni/ |
Android.mk | 6 LOCAL_THIN_ARCHIVE := true
|
/external/v8/test/mjsunit/ |
boolean.js | 31 assertEquals(Boolean(true), true); 33 assertEquals(Boolean(1), true); 34 assertEquals(Boolean(assertEquals), true); 35 assertEquals(Boolean(new Object()), true); 38 assertTrue(new Boolean(true) !== true); 39 assertTrue(new Boolean(true) == true); 41 assertEquals(true, !false) [all...] |
switch-opt.js | 72 assertResult([2], "aa", true, true); 73 assertResult([2], "ab", true, false); 74 assertResult([2], "ba", false, true); 79 assertResult([5], 1, true, true); 80 assertResult([4], 1, true, true); 81 assertResult([5], 3, true, true); [all...] |
/build/target/board/generic_x86/ |
BoardConfig.mk | 7 TARGET_NO_BOOTLOADER := true 8 TARGET_NO_KERNEL := true 15 HAVE_HTC_AUDIO_DRIVER := true 16 BOARD_USES_GENERIC_AUDIO := true 19 USE_CAMERA_STUB := true 27 WITH_DEXPREOPT ?= true 31 BUILD_EMULATOR_OPENGL := true 35 USE_OPENGL_RENDERER := true 37 TARGET_USERIMAGES_USE_EXT4 := true 43 TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true [all...] |
/build/core/combo/arch/x86_64/ |
x86_64.mk | 8 ARCH_X86_HAVE_SSSE3 := true 10 ARCH_X86_HAVE_POPCNT := true 11 ARCH_X86_HAVE_SSE4 := true 12 ARCH_X86_HAVE_SSE4_1 := true 13 ARCH_X86_HAVE_SSE4_2 := true
|
/external/compiler-rt/make/test/ |
test-util.mk | 4 $(call AssertEqual,streq_t0,true) 10 $(call AssertEqual,streq_t3,true) 16 $(call AssertEqual,streq_t6,true) 21 $(call AssertEqual,strneq_t8,true) 23 $(call AssertEqual,strneq_t9,true) 27 $(call AssertEqual,strneq_t11,true) 29 $(call AssertEqual,strneq_t12,true) 34 $(call AssertEqual,contains_t0,true) 36 $(call AssertEqual,contains_t1,true) 38 $(call AssertEqual,contains_t2,true) [all...] |
/external/tinyxml2/ |
Android.mk | 1 LOG_TO_ANDROID_LOGCAT := true 11 ifeq ($(LOG_TO_ANDROID_LOGCAT),true)
|
/frameworks/av/media/libmediaplayerservice/tests/ |
Android.mk | 22 LOCAL_CLANG := true 24 LOCAL_32_BIT_ONLY := true
|
/frameworks/av/services/mediaresourcemanager/ |
Android.mk | 11 LOCAL_32_BIT_ONLY := true 17 LOCAL_CLANG := true
|