/art/test/005-annotations/src/android/test/anno/ |
H A D | AnnoFancyType.java | 1 package android.test.anno;
|
H A D | ExportedProperty.java | 1 /* part of test for array problem */ 2 package android.test.anno;
|
H A D | INoted.java | 1 package android.test.anno;
|
H A D | IntToString.java | 1 /* part of test for array problem */ 2 package android.test.anno;
|
H A D | SubNoted.java | 1 package android.test.anno;
|
H A D | FullyNoted.java | 2 package android.test.anno;
|
H A D | SimplyNoted.java | 1 package android.test.anno;
|
H A D | AnnoFancyMethod.java | 1 package android.test.anno;
|
H A D | TestAnnotations.java | 1 package android.test.anno;
|
/art/test/076-boolean-put/src/ |
H A D | Main.java | 32 foo.test(); 37 void test() { method in class:Main
|
/art/test/ |
H A D | Android.run-test.mk | 24 # List all the test names for host and target and compiler variants. 25 # $(1): test name, e.g. 003-omnibus-opcodes 28 define all-run-test-names 29 test-art-host-run-test$(2)-default$(3)-$(1)32 \ 30 test-art-host-run-test$(2)-optimizing$(3)-$(1)32 \ 31 test-art-host-run-test$(2)-interpreter$(3)-$(1)32 \ 32 test [all...] |
/art/build/ |
H A D | Android.common_test.mk | 23 # path. (The problem is being a 32b test on 64b device, which is still located in nativetest64). 26 # List of known broken tests that we won't attempt to execute. The test name must be the full 27 # rule name such as test-art-host-oat-optimizing-HelloWorld64. 29 test-art-host-run-test-gcstress-optimizing-no-prebuild-004-SignalTest32 \ 30 test-art-host-run-test-gcstress-optimizing-prebuild-004-SignalTest32 \ 31 test-art-host-run-test-gcstress-optimizing-norelocate-004-SignalTest32 \ 32 test [all...] |
H A D | Android.gtest.mk | 18 LOCAL_PATH := art/test 23 # Subdirectories in art/test which contain dex files used as inputs for gtests. 44 $(foreach dir,$(GTEST_DEX_DIRECTORIES), $(eval $(call build-art-test-dex,art-gtest,$(dir), \ 61 # The elf writer test has dependencies on core.oat. 237 # $(1): gtest name - the name of the test we're building such as leb128_test. 240 gtest_rule := test-art-target-gtest-$(1)$$($(2)ART_PHONY_TEST_TARGET_SUFFIX) 242 # Add the test dependencies to test-art-target-sync, which will be a prerequisite for the test 251 $$(gtest_rule): test [all...] |
/art/compiler/utils/arm64/ |
H A D | managed_register_arm64.h | 109 const int test = id_ - kNumberOfCoreRegIds; local 110 return (0 <= test) && (test < kNumberOfWRegIds); 115 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfWRegIds); local 116 return (0 <= test) && (test < kNumberOfDRegIds); 121 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfWRegIds + local 123 return (0 <= test) && (test < kNumberOfSRegIds); 134 bool IsSameType(Arm64ManagedRegister test) cons [all...] |
/art/compiler/utils/arm/ |
H A D | managed_register_arm.h | 143 const int test = id_ - kNumberOfCoreRegIds; local 144 return (0 <= test) && (test < kNumberOfSRegIds); 149 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfSRegIds); local 150 return (0 <= test) && (test < kNumberOfDRegIds); 156 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfSRegIds); local 157 return (0 <= test) && (test < kNumberOfOverlappingDRegIds); 162 const int test local [all...] |
/art/compiler/utils/mips/ |
H A D | managed_register_mips.h | 135 const int test = id_ - kNumberOfCoreRegIds; local 136 return (0 <= test) && (test < kNumberOfFRegIds); 141 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfFRegIds); local 142 return (0 <= test) && (test < kNumberOfDRegIds); 148 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfFRegIds); local 149 return (0 <= test) && (test < kNumberOfOverlappingDRegIds); 154 const int test local [all...] |
/art/compiler/utils/x86/ |
H A D | managed_register_x86.h | 138 const int test = id_ - kNumberOfCpuRegIds; local 139 return (0 <= test) && (test < kNumberOfXmmRegIds); 144 const int test = id_ - (kNumberOfCpuRegIds + kNumberOfXmmRegIds); local 145 return (0 <= test) && (test < kNumberOfX87RegIds); 150 const int test = id_ - local 152 return (0 <= test) && (test < kNumberOfPairRegIds);
|
/art/compiler/utils/x86_64/ |
H A D | managed_register_x86_64.h | 125 const int test = id_ - kNumberOfCpuRegIds; local 126 return (0 <= test) && (test < kNumberOfXmmRegIds); 131 const int test = id_ - (kNumberOfCpuRegIds + kNumberOfXmmRegIds); local 132 return (0 <= test) && (test < kNumberOfX87RegIds); 137 const int test = id_ - local 139 return (0 <= test) && (test < kNumberOfPairRegIds);
|
/art/runtime/ |
H A D | monitor_test.cc | 49 // One exception test is for waiting on another Thread's lock. This is used to race-free & 104 // This test is potentially racy, but the timeout is long enough that it should work. 125 ASSERT_EQ(LockWord::LockState::kThinLocked, new_state); // To fail the test. 137 ASSERT_EQ(LockWord::LockState::kFatLocked, new_state2); // To fail the test. 161 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. 206 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. 250 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. 290 static void CommonWaitSetup(MonitorTest* test, ClassLinker* class_linker, uint64_t create_sleep, argument 297 test->object_ = hs.NewHandle(mirror::String::AllocFromModifiedUtf8(Thread::Current(), 299 test [all...] |
/art/test/083-compiler-regressions/src/ |
H A D | Main.java | 63 LiveFlags.test(); 9837 static void test() method in class:LiveFlags
|