/dalvik/dx/tests/056-dex-call-interface/ |
D | Blort.java | 19 public static int test(Zorch z, double d) { in test() argument 20 z.zorch1(); in test() 21 z.zorch2(d); in test() 22 int x = z.zorch3(z); in test() 23 int y = (int) z.zorch4(); in test()
|
/dalvik/dx/tests/047-dex-wide-args/ |
D | Blort.java | 19 public static long test1(int w, long x, int y, long z) { in test1() argument 20 return w + x + y + z; in test1() 23 public static long test2(long w, int x, long y, int z) { in test2() argument 24 return w + x + y + z; in test2()
|
/dalvik/dx/tests/057-dex-call-virtual/ |
D | Blort.java | 19 public static int test(Zorch z) { in test() argument 20 z.zorch1(); in test() 21 return z.zorch2(5); in test()
|
/dalvik/dx/tests/132-invoke-polymorphic/ |
D | TestInvokePolymorphic.java | 62 public static void testInvokeVoidReturn3IntArguments(MethodHandle mh, int x, int y, int z) in testInvokeVoidReturn3IntArguments() argument 64 mh.invoke( x, y, z); in testInvokeVoidReturn3IntArguments() 67 public static void testInvokeExactVoidReturn3IntArguments(MethodHandle mh, int x, int y, int z) in testInvokeExactVoidReturn3IntArguments() argument 69 mh.invokeExact(x, y, z); in testInvokeExactVoidReturn3IntArguments()
|
D | TestInvokePolymorphic.class | ... .invoke.MethodHandle mh
int x
int y
int z
public static void testInvokeExactVoidReturn3IntArguments (java.lang.invoke ... |
D | expected.txt | 139 |[37] "z" 602 | parameter z v3 730 | parameter z v3 1105 0009e5: 7a00 |"z" 1198 000a2e: 38 |parameter z v3 1260 000a60: 38 |parameter z v3
|
/dalvik/dx/tests/110-dex-preserve-this/ |
D | Blort.java | 19 Object z = ""; in test() local 21 if (z instanceof Integer) { in test()
|
D | Blort.class | ... init> ()
public int test ()
Object z |
/dalvik/dx/tests/062-dex-synch-method/ |
D | Blort.java | 27 public synchronized int testInstance3(int x, int y, int z) { in testInstance3() argument 55 public static synchronized int testStatic3(int x, int y, int z) { in testStatic3() argument
|
/dalvik/dx/tests/137-dexmerger-dex38/src/invokecustom/ |
D | InvokeCustom.java | 44 private static void targetMethodTest2(boolean z, byte b, char c, short s, int i, float f, long l, in targetMethodTest2() argument 46 System.out.println(z); in targetMethodTest2()
|
/dalvik/dx/tests/135-invoke-custom/src/invokecustom/ |
D | InvokeCustom.java | 48 private static void targetMethodTest2(boolean z, byte b, char c, short s, int i, float f, long l, in targetMethodTest2() argument 50 System.out.println(z); in targetMethodTest2()
|