Home
last modified time | relevance | path

Searched refs:test (Results 1 – 25 of 138) sorted by relevance

123456

/art/test/005-annotations/
Dexpected.txt2 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/
DInstanceTest.java36 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/
DMain.java24 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/
Dmanaged_register_arm.h143 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/
Dmanaged_register_arm64.h109 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/
Dmanaged_register_mips.h135 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/
Dinfo.txt1 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/
Dmanaged_register_x86_64.h125 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/
Dmanaged_register_x86.h138 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/
Dmonitor_test.cc290 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/
DMain.java11 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/
Dinfo.txt1 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/
Dexpected.txt1 Deadlock test starting.
4 Deadlock test interrupting threads.
5 Deadlock test main thread bailing.
/art/test/
DREADME.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 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,

123456