Lines Matching refs:obj1

111   static int test1(TestClass obj1, TestClass obj2) {  in test1()  argument
112 obj1.i = 1; in test1()
114 return obj1.i + obj2.j; in test1()
159 TestClass obj1 = TestClass.sTestClassObj; in test3() local
164 obj1.j = 2; in test3()
168 return obj.i + obj1.j + obj2.i + obj2.j; in test3()
238 static int test6(TestClass obj1, TestClass obj2, boolean b) { in test6() argument
239 obj1.i = 1; in test6()
240 obj1.j = 2; in test6()
244 return obj1.j + obj2.j; in test6()
360 static int test12(TestClass obj1, TestClass obj2) { in test12() argument
361 obj1.i = 1; in test12()
364 sum += obj1.i; in test12()
383 static int test13(TestClass obj1, TestClass2 obj2) { in test13() argument
384 obj1.i = 1; in test13()
386 return obj1.i + obj2.i; in test13()
400 static int test14(TestClass obj1, SubTestClass obj2) { in test14() argument
401 obj1.i = 1; in test14()
403 return obj1.i; in test14()
560 TestClass obj1 = new TestClass(); in test22() local
561 obj1.i = 2; // This store can be eliminated since obj1 is never stored into inside a loop. in test22()
569 sum += obj1.i + obj3.i; in test22()
918 private static int testStoreStore5(TestClass2 obj1, TestClass2 obj2) { in testStoreStore5() argument
919 obj1.i = 71; // This store is needed since obj2.i may load from it. in testStoreStore5()
921 obj1.i = 72; in testStoreStore5()
935 private static int testStoreStore6(TestClass2 obj1, TestClass2 obj2) { in testStoreStore6() argument
936 obj1.i = 81; // This store is not needed since obj2.j cannot load from it. in testStoreStore6()
938 obj1.i = 82; in testStoreStore6()
1402 TestClass obj1 = new TestClass(); in main() local
1404 obj1.next = obj2; in main()
1405 assertIntEquals(test3(obj1), 10); in main()
1414 obj1 = new TestClass(); in main()
1416 obj1.next = obj2; in main()