/art/test/661-oat-writer-layout/ |
D | expected.txt | 8 C::m_a$$$ 9 C::m_b$$$ 10 C::m_c$$$ 17 C::m_a$$Startup$ 18 C::m_b$$Startup$ 19 C::m_c$$Startup$ 26 C::m_a$Hot$Startup$ 27 C::m_b$Hot$Startup$ 28 C::m_c$Hot$Startup$ 35 C::m_a$$$Poststartup [all …]
|
/art/test/661-oat-writer-layout/src/ |
D | Test.java | 66 all_methods.add(C.class.getDeclaredMethod("m_a$$$")); in getTestMethods() 67 all_methods.add(C.class.getDeclaredMethod("m_a$$Startup$")); in getTestMethods() 68 all_methods.add(C.class.getDeclaredMethod("m_a$Hot$Startup$")); in getTestMethods() 69 all_methods.add(C.class.getDeclaredMethod("m_a$$$Poststartup")); in getTestMethods() 70 all_methods.add(C.class.getDeclaredMethod("m_a$Hot$$Poststartup")); in getTestMethods() 71 all_methods.add(C.class.getDeclaredMethod("m_a$$Startup$Poststartup")); in getTestMethods() 72 all_methods.add(C.class.getDeclaredMethod("m_a$Hot$Startup$Poststartup")); in getTestMethods() 73 all_methods.add(C.class.getDeclaredMethod("m_b$$$")); in getTestMethods() 74 all_methods.add(C.class.getDeclaredMethod("m_b$$Startup$")); in getTestMethods() 75 all_methods.add(C.class.getDeclaredMethod("m_b$Hot$Startup$")); in getTestMethods() [all …]
|
/art/libartbase/base/ |
D | runtime_debug.h | 47 #define DEFINE_RUNTIME_DEBUG_FLAG(C, x) \ argument 48 static_assert(!C::x, "Unexpected enabled flag in release build"); 52 #define DEFINE_RUNTIME_DEBUG_FLAG(C, x) \ 53 bool C::x = RegisterRuntimeDebugFlag(&C::x);
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 324 int32_t index = GetVReg(C()); in HandleAGet() 341 int32_t index = GetVReg(C()); in HandleAPut() 702 ObjPtr<mirror::Class> c = ResolveVerifyAndClinit(dex::TypeIndex(C()), in INSTANCE_OF() 762 dex::TypeIndex(C()), in NEW_ARRAY() 851 return HandleCmpl<float>(GetVRegFloat(B()), GetVRegFloat(C())); in CMPL_FLOAT() 855 return HandleCmpg<float>(GetVRegFloat(B()), GetVRegFloat(C())); in CMPG_FLOAT() 859 return HandleCmpl<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPL_DOUBLE() 863 return HandleCmpg<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPG_DOUBLE() 867 return HandleCmpl<int64_t>(GetVRegLong(B()), GetVRegLong(C())); in CMP_LONG() 871 return HandleIf(GetVReg(A()) == GetVReg(B()), C()); in IF_EQ() [all …]
|
/art/test/425-invoke-super/src/ |
D | Main.java | 28 static class C extends B { class in Main 32 static class D extends C { 45 assertEquals(1, new C().$opt$bar()); in main()
|
/art/test/1974-resize-array/ |
D | expected.txt | 18 val is: [<SELF REF>, A, B, C] resize +5 item 0 is [<SELF REF>, A, B, C] 19 val is: [<SELF REF>, A, B, C, null, null, null, null, null] 20 val is: [<SELF REF>, A, B, C, null, null, null, null, null] 26 val is: [<SELF REF>, A, B, C, null, null, null, null, null] resize -7 item 0 is [<SELF REF>, A, B, … 53 val is: [A, 2, C] resize -2
|
/art/test/301-abstract-protected/src/ |
D | Main.java | 19 System.out.println(new C().m()); in main() 33 class C extends AbstractI { public String m() { return "passed"; }; } in m() class
|
/art/test/969-iface-super/ |
D | expected.txt | 10 Testing for type C 11 C-virtual C.SayHi()='Hello and welcome ' 12 C-interface Iface.SayHi()='Hello and welcome ' 13 End testing for type C
|
/art/test/660-clinit/src/ |
D | Main.java | 35 expectNotPreInit(C.class); in main() 54 C z = new C(); in main() 57 System.out.println("C.c: " + C.c); in main() 163 class C { class
|
/art/test/121-modifiers/smali/ |
D | A$C.smali | 2 # Copyright (C) 2014 The Android Open Source Project 17 .class public interface abstract LA$C; 29 name = "C"
|
D | A.smali | 2 # Copyright (C) 2014 The Android Open Source Project 26 LA$C;
|
/art/test/660-store-8-16/smali/ |
D | TestCase.smali | 1 # Copyright (C) 2017 The Android Open Source Project 69 .method public static setCharArray([C)V 80 sput-char v0, LTestCase;->staticCharField:C 87 iput-char v0, p0, LTestCase;->instanceCharField:C 101 .field public static staticCharField:C 102 .field public instanceCharField:C
|
/art/test/800-smali/smali/ |
D | b_21869691A.smali | 16 # class C extends B { 19 # Then calling invoke-interface C.a() will go wrong if there is no explicit check: a can't be found 20 # in C, but in the interface table, so we will find an interface method and pass ICCE checks. 22 # If we do this before a correct invoke-virtual C.a(), we poison the dex cache with an incorrect
|
D | sameFieldNames.smali | 13 .field static public a:C 25 .field static public b:C 27 .field static public d:C 29 .field static public f:C 31 .field static public h:C
|
/art/test/960-default-smali/ |
D | expected.txt | 15 Testing for type C 16 C-virtual A.SayHi()='Hi ' 17 C-virtual C.SayHi()='Hi ' 18 C-interface Greeter.SayHi()='Hi ' 19 C-virtual A.SayHiTwice()='You don't control me' 20 C-virtual C.SayHiTwice()='You don't control me' 21 C-interface Greeter.SayHiTwice()='You don't control me' 22 End testing for type C
|
/art/test/201-built-in-except-detail-messages/src/ |
D | Main.java | 115 Object[] array = new C[10][]; in arrayStore() 126 Object o = new C[4]; in arrayStore() 187 System.arraycopy(new C(), 0, "hello", 0, 1); in arrayStore() 205 Object o = (C) makeArray(String.class); in classCast() 213 Object o = (C) makeArray(float.class); in classCast() 221 Object o = (C) makeArray(char[].class); in classCast() 236 static class C { } class in Main
|
/art/test/530-checker-lse2/src/ |
D | Main.java | 41 private static class C implements X { class in Main 56 private C mC = new C(); 57 private X mCX = new C();
|
/art/test/Lookup/ |
D | C.java | 17 class C {} class
|
/art/libartbase/base/unix_file/ |
D | README | 1 A simple C++ wrapper for Unix file I/O. 4 RandomAccessFile and related classes. The usual C++ idioms of RAII and "you
|
/art/test/121-modifiers/src-java/ |
D | A.java | 21 protected static interface C { interface in A
|
/art/test/960-default-smali/src/ |
D | C.java | 16 class C extends A { class
|
/art/runtime/interpreter/mterp/ |
D | README.txt | 33 Both C and assembly sources will be passed through the C pre-processor, 34 so you can take advantage of C-style comments and preprocessor directives 43 ==== Using C constants from assembly sources ==== 47 restricted, as simple macros are used to massage it for use with both C 70 over the C++ interpreter through its efficient mechanism of
|
/art/test/969-iface-super/src/ |
D | C.java | 16 public class C implements Iface { class
|
/art/test/536-checker-intrinsic-optimization/smali/ |
D | SmaliTests.smali | 1 # Copyright (C) 2017 The Android Open Source Project 33 .method public static $noinline$stringCharAtCatch(Ljava/lang/String;I)C 42 invoke-virtual {p0, p1}, Ljava/lang/String;->charAt(I)C 76 .method public static stringCharAtCatchPhiReturn(Ljava/lang/String;I)C 88 invoke-virtual {p0, p1}, Ljava/lang/String;->charAt(I)C
|
/art/test/600-verifier-fails/ |
D | expected.txt | 3 passed C
|