Lines Matching refs:b
41 Object b = $opt$TestInvokeObjectParameter(a); in main() local
42 if (a != b) { in main()
43 throw new Error("Different object returned " + a + " " + b); in main()
120 static int $opt$TestInvokeWith2Parameters(int a, int b) { in $opt$TestInvokeWith2Parameters() argument
121 return a - b; in $opt$TestInvokeWith2Parameters()
124 static int $opt$TestInvokeWith3Parameters(int a, int b, int c) { in $opt$TestInvokeWith3Parameters() argument
125 return a - b - c; in $opt$TestInvokeWith3Parameters()
128 static int $opt$TestInvokeWith5Parameters(int a, int b, int c, int d, int e) { in $opt$TestInvokeWith5Parameters() argument
129 return a - b - c - d - e; in $opt$TestInvokeWith5Parameters()
132 static int $opt$TestInvokeWith7Parameters(int a, int b, int c, int d, int e, int f, int g) { in $opt$TestInvokeWith7Parameters() argument
133 return a - b - c - d - e - f - g; in $opt$TestInvokeWith7Parameters()
172 public static void printStaticMethodWith2Args(int a, int b) { in printStaticMethodWith2Args() argument
173 System.out.println("In static method with 2 args " + a + " " + b); in printStaticMethodWith2Args()
176 public static void printStaticMethodWith5Args(int a, int b, int c, int d, int e) { in printStaticMethodWith5Args() argument
178 + a + " " + b + " " + c + " " + d + " " + e); in printStaticMethodWith5Args()
181 public static void printStaticMethodWith7Args(int a, int b, int c, int d, int e, int f, int g) { in printStaticMethodWith7Args() argument
183 + a + " " + b + " " + c + " " + d + " " + e + " " + f + " " + g); in printStaticMethodWith7Args()