Lines Matching refs:TestClass
32 class TestClass { class
34 sTestClassObj = new TestClass(-1, -2);
36 TestClass() { in TestClass() method in TestClass
38 TestClass(int i, int j) { in TestClass() method in TestClass
45 TestClass next;
48 static TestClass sTestClassObj;
51 class SubTestClass extends TestClass {
112 static int test1(TestClass obj1, TestClass obj2) { in test1()
130 static int test2(TestClass obj) { in test2()
159 static int test3(TestClass obj) { in test3()
160 TestClass obj1 = TestClass.sTestClassObj; in test3()
161 TestClass obj2 = new TestClass(); // Cannot alias with obj or obj1 which pre-exist. in test3()
188 static int test6(TestClass obj1, TestClass obj2, boolean b) { in test6()
206 static int test7(TestClass obj) { in test7()
227 TestClass obj = new TestClass(); in test8()
246 static int test9(TestClass obj) { in test9()
247 TestClass obj2 = new TestClass(); in test9()
265 static int test11(TestClass obj) { in test11()
285 static int test12(TestClass obj1, TestClass obj2) { in test12()
308 static int test13(TestClass obj1, TestClass2 obj2) { in test13()
325 static int test14(TestClass obj1, SubTestClass obj2) { in test14()
344 TestClass.si = 1; in test15()
346 return TestClass.si; in test15()
363 TestClass obj = new TestClass(1, 2); in test16()
381 TestClass obj = new TestClass(); in test17()
395 static int test18(TestClass obj) { in test18()
424 static TestClass test20() { in test20()
425 TestClass obj = new TestClass(); in test20()
447 static void test21(TestClass obj0) { in test21()
448 TestClass obj = new TestClass(); in test21()
485 TestClass obj1 = new TestClass(); in test22()
488 TestClass obj2 = new TestClass(); in test22()
492 TestClass obj3 = new TestClass(); in test22()
563 TestClass obj = new TestClass(); in $noinline$testHSelect()
564 TestClass obj2 = null; in $noinline$testHSelect()
702 TestClass.si = 61; in testStoreStore4()
703 TestClass.si = 62; in testStoreStore4()
966 TestClass obj = new TestClass(); in testExitMerge()
988 TestClass obj = new TestClass(); in testExitMerge2()
1159 Method test4 = main2.getMethod("test4", TestClass.class, boolean.class); in main()
1160 Method test5 = main2.getMethod("test5", TestClass.class, boolean.class); in main()
1161 Method test10 = main2.getMethod("test10", TestClass.class); in main()
1166 assertIntEquals(test1(new TestClass(), new TestClass()), 3); in main()
1167 assertIntEquals(test2(new TestClass()), 1); in main()
1168 TestClass obj1 = new TestClass(); in main()
1169 TestClass obj2 = new TestClass(); in main()
1172 assertIntEquals((int)test4.invoke(null, new TestClass(), true), 1); in main()
1173 assertIntEquals((int)test4.invoke(null, new TestClass(), false), 1); in main()
1174 assertIntEquals((int)test5.invoke(null, new TestClass(), true), 1); in main()
1175 assertIntEquals((int)test5.invoke(null, new TestClass(), false), 2); in main()
1176 assertIntEquals(test6(new TestClass(), new TestClass(), true), 4); in main()
1177 assertIntEquals(test6(new TestClass(), new TestClass(), false), 2); in main()
1178 assertIntEquals(test7(new TestClass()), 1); in main()
1180 obj1 = new TestClass(); in main()
1181 obj2 = new TestClass(); in main()
1183 assertIntEquals(test9(new TestClass()), 1); in main()
1184 assertIntEquals((int)test10.invoke(null, new TestClass(3, 4)), 3); in main()
1185 assertIntEquals(TestClass.si, 3); in main()
1186 assertIntEquals(test11(new TestClass()), 10); in main()
1187 assertIntEquals(test12(new TestClass(), new TestClass()), 10); in main()
1188 assertIntEquals(test13(new TestClass(), new TestClass2()), 3); in main()
1194 assertIntEquals(test18(new TestClass()), 1); in main()
1199 test21(new TestClass()); in main()
1258 assertIntEquals(TestClass.si, 62); in main()