• Home
  • Raw
  • Download

Lines Matching refs:mh

20     public static void testInvokeVoidReturnNoArgs(MethodHandle mh) throws Throwable {  in testInvokeVoidReturnNoArgs()  argument
21 mh.invoke(); in testInvokeVoidReturnNoArgs()
24 public static void testInvokeExactVoidReturnNoArgs(MethodHandle mh) throws Throwable { in testInvokeExactVoidReturnNoArgs() argument
25 mh.invokeExact(); in testInvokeExactVoidReturnNoArgs()
28 public static int testInvokeIntReturnNoArgs(MethodHandle mh) throws Throwable { in testInvokeIntReturnNoArgs() argument
29 return (int) mh.invoke(); in testInvokeIntReturnNoArgs()
32 public static int testInvokeExactIntReturnNoArgs(MethodHandle mh) throws Throwable { in testInvokeExactIntReturnNoArgs() argument
33 return (int) mh.invokeExact(); in testInvokeExactIntReturnNoArgs()
36 public static long testInvokeLongReturnNoArgs(MethodHandle mh) throws Throwable { in testInvokeLongReturnNoArgs() argument
37 return (long) mh.invoke(); in testInvokeLongReturnNoArgs()
40 public static long testInvokeExactLongReturnNoArgs(MethodHandle mh) throws Throwable { in testInvokeExactLongReturnNoArgs() argument
41 return (long) mh.invokeExact(); in testInvokeExactLongReturnNoArgs()
44 public static double testInvokeDoubleReturnNoArgs(MethodHandle mh) throws Throwable { in testInvokeDoubleReturnNoArgs() argument
45 return (double) mh.invoke(); in testInvokeDoubleReturnNoArgs()
48 public static double testInvokeExactDoubleReturnNoArgs(MethodHandle mh) throws Throwable { in testInvokeExactDoubleReturnNoArgs() argument
49 return (double) mh.invokeExact(); in testInvokeExactDoubleReturnNoArgs()
52 public static double testInvokeDoubleReturn2Arguments(MethodHandle mh, Object o, long l) in testInvokeDoubleReturn2Arguments() argument
54 return (double) mh.invoke(o, l); in testInvokeDoubleReturn2Arguments()
57 public static double testInvokeExactDoubleReturn2Arguments(MethodHandle mh, Object o, long l) in testInvokeExactDoubleReturn2Arguments() argument
59 return (double) mh.invokeExact(o, l); in testInvokeExactDoubleReturn2Arguments()
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()
72 public static void testInvokeVoidReturn3Arguments(MethodHandle mh, Object o, long l, double d) in testInvokeVoidReturn3Arguments() argument
74 mh.invoke(o, l, d); in testInvokeVoidReturn3Arguments()
77 public static void testInvokeExactVoidReturn3Arguments(MethodHandle mh, Object o, long l, in testInvokeExactVoidReturn3Arguments() argument
79 mh.invokeExact(o, l, d); in testInvokeExactVoidReturn3Arguments()
82 public static int testInvokeIntReturn5Arguments(MethodHandle mh, Object o, long l, double d, in testInvokeIntReturn5Arguments() argument
84 return (int) mh.invoke(o, l, d, f, s); in testInvokeIntReturn5Arguments()
87 public static int testInvokeExactIntReturn5Arguments(MethodHandle mh, Object o, long l, in testInvokeExactIntReturn5Arguments() argument
90 return (int) mh.invokeExact(o, l, d, f, s); in testInvokeExactIntReturn5Arguments()