Lines Matching refs:args
32 public Object invoke(Object proxy, Method method, Object[] args) { in invoke() argument
39 testMethod0(proxy, args); in invoke()
41 testMethod1(proxy, args); in invoke()
43 testMethod10(proxy, args); in invoke()
45 testMethod10Even(proxy, args); in invoke()
50 private void testMethod0(Object proxy, Object[] args) { in testMethod0() argument
57 private void testMethod1(Object proxy, Object[] args) { in testMethod1() argument
65 Main.assertEquals(args[0], arg1); in testMethod1()
68 private void testMethod10(Object proxy, Object[] args) { in testMethod10() argument
78 Main.assertEquals(args[i], arg); in testMethod10()
82 private void testMethod10Even(Object proxy, Object[] args) { in testMethod10Even() argument
93 Main.assertEquals(args[i], arg); in testMethod10Even()
122 public static void main(String[] args) { in main() argument
123 System.loadLibrary(args[0]); in main()