• Home
  • Raw
  • Download

Lines Matching refs:obj2

145   static int test1(TestClass obj1, TestClass obj2) {  in test1()  argument
147 obj2.j = 2; in test1()
148 return obj1.i + obj2.j; in test1()
197 TestClass obj2 = new TestClass(); // Cannot alias with obj or obj1 which pre-exist. in test3() local
198 obj.next = obj2; // Make obj2 a non-singleton. in test3()
203 obj2.i = 3; in test3()
204 obj2.j = 4; in test3()
205 return obj.i + obj1.j + obj2.i + obj2.j; in test3()
288 static int test6(TestClass obj1, TestClass obj2, boolean b) { in test6() argument
292 obj2.j = 2; in test6()
294 return obj1.j + obj2.j; in test6()
347 TestClass obj2 = new TestClass(); in test9() local
348 obj2.i = 1; in test9()
349 obj.next = obj2; in test9()
351 return obj2.i; in test9()
409 static int test12(TestClass obj1, TestClass obj2) { in test12() argument
414 obj2.i = sum; in test12()
432 static int test13(TestClass obj1, TestClass2 obj2) { in test13() argument
434 obj2.i = 2; in test13()
435 return obj1.i + obj2.i; in test13()
449 static int test14(TestClass obj1, SubTestClass obj2) { in test14() argument
451 obj2.i = 2; in test14()
614 TestClass obj2 = new TestClass(); in test22() local
615 obj2.i = 3; // This store can be eliminated since the singleton is inside the loop. in test22()
616 sum += obj2.i; in test22()
1440 TestClass obj2 = null; in $noinline$testHSelect() local
1443 obj2 = obj; in $noinline$testHSelect()
1445 return obj2.i; in $noinline$testHSelect()
1595 private static int testStoreStore5(TestClass2 obj1, TestClass2 obj2) { in testStoreStore5() argument
1597 int i = obj2.i; in testStoreStore5()
1612 private static int testStoreStore6(TestClass2 obj1, TestClass2 obj2) { in testStoreStore6() argument
1614 int j = obj2.j; in testStoreStore6()
4241 TestClass obj2 = new TestClass(); in main() local
4242 obj1.next = obj2; in main()
4253 obj2 = new TestClass(); in main()
4254 obj1.next = obj2; in main()