• Home
  • Raw
  • Download

Lines Matching refs:obj1

145   static int test1(TestClass obj1, TestClass obj2) {  in test1()  argument
146 obj1.i = 1; in test1()
148 return obj1.i + obj2.j; in test1()
196 TestClass obj1 = TestClass.sTestClassObj; in test3() local
201 obj1.j = 2; 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
289 obj1.i = 1; in test6()
290 obj1.j = 2; in test6()
294 return obj1.j + obj2.j; in test6()
409 static int test12(TestClass obj1, TestClass obj2) { in test12() argument
410 obj1.i = 1; in test12()
413 sum += obj1.i; in test12()
432 static int test13(TestClass obj1, TestClass2 obj2) { in test13() argument
433 obj1.i = 1; in test13()
435 return obj1.i + obj2.i; in test13()
449 static int test14(TestClass obj1, SubTestClass obj2) { in test14() argument
450 obj1.i = 1; in test14()
452 return obj1.i; in test14()
611 TestClass obj1 = new TestClass(); in test22() local
612 obj1.i = 2; // This store can be eliminated since obj1 is never stored into inside a loop. in test22()
620 sum += obj1.i + obj3.i; in test22()
1595 private static int testStoreStore5(TestClass2 obj1, TestClass2 obj2) { in testStoreStore5() argument
1596 obj1.i = 71; // This store is needed since obj2.i may load from it. in testStoreStore5()
1598 obj1.i = 72; in testStoreStore5()
1612 private static int testStoreStore6(TestClass2 obj1, TestClass2 obj2) { in testStoreStore6() argument
1613 obj1.i = 81; // This store is not needed since obj2.j cannot load from it. in testStoreStore6()
1615 obj1.i = 82; in testStoreStore6()
4240 TestClass obj1 = new TestClass(); in main() local
4242 obj1.next = obj2; in main()
4243 assertIntEquals(test3(obj1), 10); in main()
4252 obj1 = new TestClass(); in main()
4254 obj1.next = obj2; in main()