Home
last modified time | relevance | path

Searched refs:A (Results 1 – 25 of 139) sorted by relevance

123456

/art/test/dexdump/
Dall.lst2 0x0000043c 8 A <init> ()V (none) -1
3 0x00000454 58 A arrays ()V (none) -1
4 0x000004a0 130 A binary_ops ()V (none) -1
5 0x00000534 66 A binary_ops_2addr ()V (none) -1
6 0x00000588 34 A binary_ops_lit16 ()V (none) -1
7 0x000005bc 46 A binary_ops_lit8 ()V (none) -1
8 0x000005fc 22 A compares ()V (none) -1
9 0x00000624 50 A conditionals ()V (none) -1
10 0x00000668 56 A constants ()V (none) -1
11 0x000006b0 108 A misc ()V (none) -1
[all …]
/art/test/661-oat-writer-layout/
Dexpected.txt2 A::m_a$$$
3 A::m_b$$$
4 A::m_c$$$
11 A::m_a$$Startup$
12 A::m_b$$Startup$
13 A::m_c$$Startup$
20 A::m_a$Hot$Startup$
21 A::m_b$Hot$Startup$
22 A::m_c$Hot$Startup$
29 A::m_a$$$Poststartup
[all …]
/art/test/805-TooDeepClassInstanceOf/src/
DMain.java17 class A {} class
18 class B1 extends A {}
19 class B2 extends A {}
36 A a = new A(); in main()
37 A b1 = new B1(); in main()
38 A b2 = new B2(); in main()
39 A c1 = new C1(); in main()
40 A c2 = new C2(); in main()
41 A f1 = new F1(); in main()
42 A f2 = new F2(); in main()
[all …]
/art/test/661-oat-writer-layout/src/
DTest.java24 all_methods.add(A.class.getDeclaredMethod("m_a$$$")); in getTestMethods()
25 all_methods.add(A.class.getDeclaredMethod("m_a$$Startup$")); in getTestMethods()
26 all_methods.add(A.class.getDeclaredMethod("m_a$Hot$Startup$")); in getTestMethods()
27 all_methods.add(A.class.getDeclaredMethod("m_a$$$Poststartup")); in getTestMethods()
28 all_methods.add(A.class.getDeclaredMethod("m_a$Hot$$Poststartup")); in getTestMethods()
29 all_methods.add(A.class.getDeclaredMethod("m_a$$Startup$Poststartup")); in getTestMethods()
30 all_methods.add(A.class.getDeclaredMethod("m_a$Hot$Startup$Poststartup")); in getTestMethods()
31 all_methods.add(A.class.getDeclaredMethod("m_b$$$")); in getTestMethods()
32 all_methods.add(A.class.getDeclaredMethod("m_b$$Startup$")); in getTestMethods()
33 all_methods.add(A.class.getDeclaredMethod("m_b$Hot$Startup$")); in getTestMethods()
[all …]
/art/test/048-reflect-v8/src/
DAnnotationTest.java130 private static <A extends Annotation> void printAnnotationsByType(Class<A> annotationClass, in printAnnotationsByType()
132 A[] annotationsByType = annotationUseClass.getAnnotationsByType(annotationClass); in printAnnotationsByType()
142 private static <A extends Annotation> void printDeclaredAnnotation(Class<?> annotationUseClass, in printDeclaredAnnotation()
143 Class<A> annotationDefClass) { in printDeclaredAnnotation()
144 A anno = annotationUseClass.getDeclaredAnnotation(annotationDefClass); in printDeclaredAnnotation()
154 private static <A extends Annotation> void printDeclaredAnnotationsByType( in printDeclaredAnnotationsByType()
155 Class<A> annotationClass, Class<?> annotationUseClass) { in printDeclaredAnnotationsByType()
156 A[] annotationsByType = annotationUseClass.getDeclaredAnnotationsByType(annotationClass); in printDeclaredAnnotationsByType()
194 private static <A extends Annotation> void printMethodAnnotationsByType(Class<A> annotationClass, in printMethodAnnotationsByType()
202 A[] annotationsByType = m.getAnnotationsByType(annotationClass); in printMethodAnnotationsByType()
[all …]
/art/test/660-clinit/src/
DMain.java30 expectNotPreInit(A.class); // should pass in main()
41 A x = new A(); in main()
42 System.out.println("A.a: " + A.a); in main()
46 System.out.println("A.a: " + A.a); in main()
135 class A { class
145 A.a = 10; // write other's static field, fail
146 b = A.a; // read other's static field, fail
153 c = A.a; // read other's static field, fail
162 i = A.a; // read other's static field, fail
/art/test/066-mismatched-super/
Dinfo.txt2 1. What happens when class A extends abstract class B, but somebody
3 turns B into an interface without rebuilding A.
4 2. What happens when class A extends a class B, but somebody
5 turns B into a final class without rebuilding A.
/art/test/913-heaps/src/art/
DTest913.java83 new TestConfig(A.class, 0).doFollowReferencesTest(); in runFollowReferences()
276 A a = new A(); in doExtensionTests()
378 A a = createTree(v); in doFollowReferencesTestNonRoot()
391 A a = createTree(v); in doFollowReferencesTestRoot()
397 private void doFollowReferencesTestImpl(A root, int stopAfter, int followSet, in doFollowReferencesTestImpl()
406 setTag(A.class, 1000); in tagClasses()
407 registerClass(1000, A.class); in tagClasses()
426 private static A createTree(Verifier v) { in createTree()
427 A aInst = new A(); in createTree()
433 A a2Inst = new A(); in createTree()
[all …]
/art/test/474-fp-sub-neg/
Dinfo.txt3 A pair (sub, neg) should not be transforemd to (sub) for
6 - ( A - B ) != B - A ; if B == A
/art/test/907-get-loaded-classes/src/art/
DTest907.java32 A a = new A(); in doTest()
34 A[] aArray = new A[5]; in doTest()
76 static class A { class in Test907
/art/test/594-invoke-super/
Dexpected.txt1 new A
2 I am A's foo
5 new A
/art/test/660-clinit/
Dexpected.txt2 A.a: 5
3 A.a: 10
11 A: 100
/art/test/201-built-in-except-detail-messages/src/
DMain.java294 private static A returnNullA() { in returnNullA()
310 A a = returnNullA(); in nullPointers()
319 A a = returnNullA(); in nullPointers()
357 Field field = A.class.getField("b"); in reflection()
358 field.set(new A(), 5); in reflection()
367 Field field = A.class.getField("i"); in reflection()
368 field.set(new A(), null); in reflection()
376 Field field = A.class.getField("i"); in reflection()
377 field.set(new A(), "hello, world!"); in reflection()
385 Method m = A.class.getMethod("m", int.class, String.class); in reflection()
[all …]
/art/runtime/interpreter/mterp/x86_64/
Dother.S39 andl %eax, rINST # rINST <- A
144 andb $$0xf, %al # eax <- A
148 SET_VREG_OBJECT %edx, %rax # fp[A] <- fp[B]
150 SET_VREG %edx, %rax # fp[A] <- fp[B]
161 SET_VREG_OBJECT %edx, %rax # fp[A] <- fp[B]
163 SET_VREG %edx, %rax # fp[A] <- fp[B]
181 SET_VREG_OBJECT %edx, rINSTq # fp[A] <- fp[B]
183 SET_VREG %edx, rINSTq # fp[A] <- fp[B]
202 SET_VREG_OBJECT %eax, rINSTq # fp[A] <- fp[B]
204 SET_VREG %eax, rINSTq # fp[A] <- fp[B]
[all …]
/art/test/960-default-smali/
Dexpected.txt1 Testing for type A
2 A-virtual A.SayHi()='Hi '
3 A-interface Greeter.SayHi()='Hi '
4 A-virtual A.SayHiTwice()='Hi Hi '
5 A-interface Greeter.SayHiTwice()='Hi Hi '
6 End testing for type A
16 C-virtual A.SayHi()='Hi '
19 C-virtual A.SayHiTwice()='You don't control me'
34 E-virtual A.SayHi()='Hi2 '
38 E-virtual A.SayHiTwice()='I say Hi2 Hi2 '
[all …]
/art/test/138-duplicate-classes-check/src-ex/
DA.java17 public class A { class
20 public A() { in A() method in A
/art/test/138-duplicate-classes-check2/src-ex/
DA.java17 public class A { class
20 public A() { in A() method in A
/art/tools/ahat/etc/
DREADME.txt2 A version of the test-dump hprof generated on Android L, with one of the
6 A version of the test-dump hprof generated on Android O.
9 A version of the test-dump hprof generated on the reference implementation.
/art/test/138-duplicate-classes-check/src-art/
DA.java17 public class A { class
25 public A() { in A() method in A
/art/test/138-duplicate-classes-check2/src/
DA.java17 public class A { class
25 public A() { in A() method in A
/art/libartbase/base/
Dutils.h64 template <typename A>
65 inline void operator() (A a ATTRIBUTE_UNUSED) const { in operator()
68 template <typename A, typename B>
69 inline void operator() (A a ATTRIBUTE_UNUSED, B b ATTRIBUTE_UNUSED) const { in operator()
72 template <typename A, typename B, typename C>
73 inline void operator() (A a ATTRIBUTE_UNUSED, B b ATTRIBUTE_UNUSED, C c ATTRIBUTE_UNUSED) const { in operator()
/art/test/616-cha-native/src/
DMain.java17 abstract class A { class
21 class B extends A {
/art/test/594-invoke-super/src/
DMain.java24 class A { class
25 A() { System.out.println("new A"); } in A() method in A
44 class X extends A {
/art/test/807-method-handle-and-mr/src/
DMain.java24 class A { class
32 this.handle = MethodHandles.lookup().findVirtual(A.class, "binaryFunction", in Test()
35 this.a = new A(); in Test()
78 private A a;
/art/runtime/interpreter/mterp/x86/
Dother.S43 andl %eax, rINST # rINST <- A
171 andb $$0xf, %al # eax <- A
175 SET_VREG_OBJECT rINST, %eax # fp[A] <- fp[B]
177 SET_VREG rINST, %eax # fp[A] <- fp[B]
188 SET_VREG_OBJECT rINST, %eax # fp[A] <- fp[B]
190 SET_VREG rINST, %eax # fp[A] <- fp[B]
209 SET_VREG_OBJECT rINST, %eax # fp[A] <- fp[B]
211 SET_VREG rINST, %eax # fp[A] <- fp[B]
230 SET_VREG_OBJECT %eax, rINST # fp[A] <- fp[B]
232 SET_VREG %eax, rINST # fp[A] <- fp[B]
[all …]

123456