Lines Matching refs:obj1

112   static int test1(TestClass obj1, TestClass obj2) {  in test1()  argument
113 obj1.i = 1; in test1()
115 return obj1.i + obj2.j; in test1()
160 TestClass obj1 = TestClass.sTestClassObj; in test3() local
165 obj1.j = 2; in test3()
169 return obj.i + obj1.j + obj2.i + obj2.j; in test3()
188 static int test6(TestClass obj1, TestClass obj2, boolean b) { in test6() argument
189 obj1.i = 1; in test6()
190 obj1.j = 2; in test6()
194 return obj1.j + obj2.j; in test6()
285 static int test12(TestClass obj1, TestClass obj2) { in test12() argument
286 obj1.i = 1; in test12()
289 sum += obj1.i; in test12()
308 static int test13(TestClass obj1, TestClass2 obj2) { in test13() argument
309 obj1.i = 1; in test13()
311 return obj1.i + obj2.i; in test13()
325 static int test14(TestClass obj1, SubTestClass obj2) { in test14() argument
326 obj1.i = 1; in test14()
328 return obj1.i; in test14()
485 TestClass obj1 = new TestClass(); in test22() local
486 obj1.i = 2; // This store can be eliminated since obj1 is never stored into inside a loop. in test22()
494 sum += obj1.i + obj3.i; in test22()
716 private static int testStoreStore5(TestClass2 obj1, TestClass2 obj2) { in testStoreStore5() argument
717 obj1.i = 71; // This store is needed since obj2.i may load from it. in testStoreStore5()
719 obj1.i = 72; in testStoreStore5()
733 private static int testStoreStore6(TestClass2 obj1, TestClass2 obj2) { in testStoreStore6() argument
734 obj1.i = 81; // This store is not needed since obj2.j cannot load from it. in testStoreStore6()
736 obj1.i = 82; in testStoreStore6()
1168 TestClass obj1 = new TestClass(); in main() local
1170 obj1.next = obj2; in main()
1171 assertIntEquals(test3(obj1), 10); in main()
1180 obj1 = new TestClass(); in main()
1182 obj1.next = obj2; in main()