/art/test/005-annotations/ |
D | expected.txt | 2 java.lang.String android.test.anno.TestAnnotations.thing1: @android.test.anno.AnnoArrayField(bb=[],… 3 java.lang.String android.test.anno.TestAnnotations.thing2: @android.test.anno.AnnoArrayField(bb=[-1… 4 mapping is class [Landroid.test.anno.IntToString; 5 0='@android.test.anno.IntToString(from=0, to=NORMAL_FOCUS)' 6 1='@android.test.anno.IntToString(from=2, to=WEAK_FOCUS)' 11 annotations on TYPE class android.test.anno.SimplyNoted(2): 12 @android.test.anno.AnnoSimpleType() 13 interface android.test.anno.AnnoSimpleType 14 @android.test.anno.AnnoSimpleType2() 15 interface android.test.anno.AnnoSimpleType2 [all …]
|
/art/test/010-instance/src/ |
D | InstanceTest.java | 36 Object test; in main() local 38 test = x; in main() 39 System.out.println("x instanceof X (true): " + (test instanceof X)); in main() 40 System.out.println("x instanceof Y (false): " + (test instanceof Y)); in main() 41 test = y; in main() 42 System.out.println("y instanceof X (true): " + (test instanceof X)); in main() 43 System.out.println("y instanceof Y (true): " + (test instanceof Y)); in main() 45 test = xar; in main() 47 + (test instanceof Object)); in main() 49 + (test instanceof X)); in main() [all …]
|
/art/test/021-string2/src/ |
D | Main.java | 24 String test = "0123456789"; in main() local 31 Assert.assertTrue(test.equals(test)); in main() 32 Assert.assertTrue(test.equals(test1)); in main() 33 Assert.assertFalse(test.equals(test2)); in main() 35 Assert.assertEquals(test.compareTo(test1), 0); in main() 40 Assert.assertTrue(test.compareTo("") > 0); in main() 41 Assert.assertTrue("".compareTo(test) < 0); in main() 44 Assert.assertEquals(test.compareTo(sub), 0); in main() 45 Assert.assertEquals(sub.compareTo(test), 0); in main() 46 Assert.assertTrue(test.equals(sub)); in main() [all …]
|
/art/compiler/utils/arm/ |
D | managed_register_arm.h | 143 const int test = id_ - kNumberOfCoreRegIds; in IsSRegister() local 144 return (0 <= test) && (test < kNumberOfSRegIds); in IsSRegister() 149 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfSRegIds); in IsDRegister() local 150 return (0 <= test) && (test < kNumberOfDRegIds); in IsDRegister() 156 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfSRegIds); in IsOverlappingDRegister() local 157 return (0 <= test) && (test < kNumberOfOverlappingDRegIds); in IsOverlappingDRegister() 162 const int test = in IsRegisterPair() local 164 return (0 <= test) && (test < kNumberOfPairRegIds); in IsRegisterPair() 167 bool IsSameType(ArmManagedRegister test) const { in IsSameType() argument 168 CHECK(IsValidManagedRegister() && test.IsValidManagedRegister()); in IsSameType() [all …]
|
/art/compiler/utils/arm64/ |
D | managed_register_arm64.h | 109 const int test = id_ - kNumberOfCoreRegIds; in IsWRegister() local 110 return (0 <= test) && (test < kNumberOfWRegIds); in IsWRegister() 115 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfWRegIds); in IsDRegister() local 116 return (0 <= test) && (test < kNumberOfDRegIds); in IsDRegister() 121 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfWRegIds + in IsSRegister() local 123 return (0 <= test) && (test < kNumberOfSRegIds); in IsSRegister() 134 bool IsSameType(Arm64ManagedRegister test) const { in IsSameType() argument 135 CHECK(IsValidManagedRegister() && test.IsValidManagedRegister()); in IsSameType() 137 (IsCoreRegister() && test.IsCoreRegister()) || in IsSameType() 138 (IsWRegister() && test.IsWRegister()) || in IsSameType() [all …]
|
/art/compiler/utils/mips/ |
D | managed_register_mips.h | 135 const int test = id_ - kNumberOfCoreRegIds; in IsFRegister() local 136 return (0 <= test) && (test < kNumberOfFRegIds); in IsFRegister() 141 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfFRegIds); in IsDRegister() local 142 return (0 <= test) && (test < kNumberOfDRegIds); in IsDRegister() 148 const int test = id_ - (kNumberOfCoreRegIds + kNumberOfFRegIds); in IsOverlappingDRegister() local 149 return (0 <= test) && (test < kNumberOfOverlappingDRegIds); in IsOverlappingDRegister() 154 const int test = in IsRegisterPair() local 156 return (0 <= test) && (test < kNumberOfPairRegIds); in IsRegisterPair()
|
/art/test/087-gc-after-link/ |
D | info.txt | 1 This test causes a linkage error, which calls dvmFreeClassInnards on 4 This is a regression test for a defect in Dalvik, which was assuming 7 This test is a modified version of test 086. 8 This test is not expected to work for the reference implementation.
|
/art/compiler/utils/x86_64/ |
D | managed_register_x86_64.h | 125 const int test = id_ - kNumberOfCpuRegIds; in IsXmmRegister() local 126 return (0 <= test) && (test < kNumberOfXmmRegIds); in IsXmmRegister() 131 const int test = id_ - (kNumberOfCpuRegIds + kNumberOfXmmRegIds); in IsX87Register() local 132 return (0 <= test) && (test < kNumberOfX87RegIds); in IsX87Register() 137 const int test = id_ - in IsRegisterPair() local 139 return (0 <= test) && (test < kNumberOfPairRegIds); in IsRegisterPair()
|
/art/compiler/utils/x86/ |
D | managed_register_x86.h | 138 const int test = id_ - kNumberOfCpuRegIds; in IsXmmRegister() local 139 return (0 <= test) && (test < kNumberOfXmmRegIds); in IsXmmRegister() 144 const int test = id_ - (kNumberOfCpuRegIds + kNumberOfXmmRegIds); in IsX87Register() local 145 return (0 <= test) && (test < kNumberOfX87RegIds); in IsX87Register() 150 const int test = id_ - in IsRegisterPair() local 152 return (0 <= test) && (test < kNumberOfPairRegIds); in IsRegisterPair()
|
/art/runtime/ |
D | monitor_test.cc | 290 static void CommonWaitSetup(MonitorTest* test, ClassLinker* class_linker, uint64_t create_sleep, in CommonWaitSetup() argument 297 test->object_ = hs.NewHandle(mirror::String::AllocFromModifiedUtf8(Thread::Current(), in CommonWaitSetup() 299 test->watchdog_object_ = hs.NewHandle(mirror::String::AllocFromModifiedUtf8(Thread::Current(), in CommonWaitSetup() 304 test->barrier_ = std::unique_ptr<Barrier>(new Barrier(2)); in CommonWaitSetup() 305 test->complete_barrier_ = std::unique_ptr<Barrier>(new Barrier(3)); in CommonWaitSetup() 306 test->completed_ = false; in CommonWaitSetup() 329 thread_pool.AddTask(self, new CreateTask(test, create_sleep, c_millis, c_expected)); in CommonWaitSetup() 331 thread_pool.AddTask(self, new InterruptTask(test, use_sleep, static_cast<uint64_t>(u_millis))); in CommonWaitSetup() 333 thread_pool.AddTask(self, new UseTask(test, use_sleep, u_millis, u_expected)); in CommonWaitSetup() 335 thread_pool.AddTask(self, new WatchdogTask(test)); in CommonWaitSetup() [all …]
|
/art/test/067-preemptive-unpark/src/ |
D | Main.java | 11 ParkTester test = new ParkTester(); in main() local 15 test.start(); in main() 16 UNSAFE.unpark(test); in main() 25 test.parkNow = true; in main() 33 if (test.success) { in main()
|
/art/test/083-compiler-regressions/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features, 6 This test covers JIT regressions
|
/art/test/033-class-init-deadlock/ |
D | expected.txt | 1 Deadlock test starting. 4 Deadlock test interrupting threads. 5 Deadlock test main thread bailing.
|
/art/test/ |
D | README.txt | 1 VM test harness. 3 Use "./run-all-tests" to run all tests, or "./run-test <number>" to run a 4 single test. Run "./run-test" with no arguments to see command flags;
|
/art/test/025-access-controller/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/009-instanceof/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/039-join-main/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/006-args/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/046-reflect/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/040-miranda/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/010-instance/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/008-exceptions/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/017-float/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/018-stack-overflow/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|
/art/test/028-array-write/ |
D | info.txt | 1 This is a miscellaneous test that was imported into the new-at-the-time 2 runtime test framework. The test is intended to exercise basic features,
|