Lines Matching refs:a

40     Object a = new Object();  in main()  local
41 Object b = $opt$TestInvokeObjectParameter(a); in main()
42 if (a != b) { in main()
43 throw new Error("Different object returned " + a + " " + b); in main()
133 static Object $opt$TestInvokeObjectParameter(Object a) { in $opt$TestInvokeObjectParameter() argument
135 return a; in $opt$TestInvokeObjectParameter()
138 static int $opt$TestInvokeWith2Parameters(int a, int b) { in $opt$TestInvokeWith2Parameters() argument
139 return a - b; in $opt$TestInvokeWith2Parameters()
142 static int $opt$TestInvokeWith3Parameters(int a, int b, int c) { in $opt$TestInvokeWith3Parameters() argument
143 return a - b - c; in $opt$TestInvokeWith3Parameters()
146 static int $opt$TestInvokeWith5Parameters(int a, int b, int c, int d, int e) { in $opt$TestInvokeWith5Parameters() argument
147 return a - b - c - d - e; in $opt$TestInvokeWith5Parameters()
150 static int $opt$TestInvokeWith7Parameters(int a, int b, int c, int d, int e, int f, int g) { in $opt$TestInvokeWith7Parameters() argument
151 return a - b - c - d - e - f - g; in $opt$TestInvokeWith7Parameters()
190 public static void printStaticMethodWith2Args(int a, int b) { in printStaticMethodWith2Args() argument
191 System.out.println("In static method with 2 args " + a + " " + b); in printStaticMethodWith2Args()
194 public static void printStaticMethodWith5Args(int a, int b, int c, int d, int e) { in printStaticMethodWith5Args() argument
196 + a + " " + b + " " + c + " " + d + " " + e); in printStaticMethodWith5Args()
199 public static void printStaticMethodWith7Args(int a, int b, int c, int d, int e, int f, int g) { in printStaticMethodWith7Args() argument
201 + a + " " + b + " " + c + " " + d + " " + e + " " + f + " " + g); in printStaticMethodWith7Args()
204 public static void printStaticMethodWithObjectArg(Object a) { in printStaticMethodWithObjectArg() argument
205 System.out.println("In static method with object arg " + a.getClass()); in printStaticMethodWithObjectArg()