Lines Matching refs:j
38 TestClass(int i, int j) { in TestClass() argument
40 this.j = j; in TestClass()
43 int j; field in TestClass
57 int j; field in TestClass2
114 obj2.j = 2; in test1()
115 return obj1.i + obj2.j; in test1()
131 obj.j = 1; in test2()
132 obj.j = 1; in test2()
133 return obj.j; in test2()
165 obj1.j = 2; in test3()
168 obj2.j = 4; in test3()
169 return obj.i + obj1.j + obj2.i + obj2.j; in test3()
190 obj1.j = 2; in test6()
192 obj2.j = 2; in test6()
194 return obj1.j + obj2.j; in test6()
364 return obj.i + obj.j; in test16()
382 obj.j = 1; in test17()
647 obj.j = 42; in testStoreStore()
649 obj.j = 43; in testStoreStore()
666 obj.j = 42; in testStoreStore2()
668 obj.j = 44; in testStoreStore2()
685 obj.j = 42; // redundant since it's overwritten in both branches below. in testStoreStore3()
687 obj.j = 43; in testStoreStore3()
689 obj.j = 44; in testStoreStore3()
735 int j = obj2.j; in testStoreStore6() local
737 return j; in testStoreStore6()
805 obj.j = 42; in testStoreStoreWithDeoptimize()
807 obj.j = 43; in testStoreStoreWithDeoptimize()
995 res = obj.j + 2; in testExitMerge2()
1239 assertIntEquals(testStoreStore().j, 43); in main()
1248 assertIntEquals(testclass2.j, 44); in main()
1252 assertIntEquals(testclass2.j, 43); in main()
1255 assertIntEquals(testclass2.j, 44); in main()
1264 testclass2.j = 88; in main()