Home
last modified time | relevance | path

Searched refs:testMethod (Results 1 – 20 of 20) sorted by relevance

/art/test/181-default-methods/
Dexpected-stdout.txt2 Output from Default_D1: D1.testMethod()
3 Output from Default_D2: D2.testMethod()
4 Output from Default_D3: D3.testMethod()
9 Output from Default_D1_D2M: D1.testMethod()
10 Output from Default_D1M_D2: D2.testMethod()
15 Output from Default_D1_D2M_D3M: D1.testMethod()
17 Output from Default_D1M_D2_D3M: D2.testMethod()
18 Output from Default_D1M_D2M_D3: D3.testMethod()
21 Output from Default_D1D2D: D1D2D.testMethod()
23 Output from Default_AD1D2D: AD1D2D.testMethod()
[all …]
/art/test/510-checker-try-catch/src/
DMain.java142 public static void testMethod(String method) throws Exception { in testMethod() method in Main
166 testMethod("testUseAfterCatch_int"); in main()
167 testMethod("testUseAfterCatch_long"); in main()
168 testMethod("testUseAfterCatch_float"); in main()
169 testMethod("testUseAfterCatch_double"); in main()
170 testMethod("testCatchPhi_const"); in main()
171 testMethod("testCatchPhi_int"); in main()
172 testMethod("testCatchPhi_long"); in main()
173 testMethod("testCatchPhi_float"); in main()
174 testMethod("testCatchPhi_double"); in main()
[all …]
/art/test/910-methods/src/art/
DTest910.java29 testMethod("java.lang.Object", "toString"); in doTest()
30 testMethod("java.lang.String", "charAt", int.class); in doTest()
31 testMethod("java.lang.Math", "sqrt", double.class); in doTest()
32 testMethod("java.util.List", "add", Object.class); in doTest()
34 testMethod(getProxyClass(), "run"); in doTest()
41 testMethod(findSyntheticMethod(), NestedSynthetic.class, false); in doTest()
44 private static void testMethod(String className, String methodName, Class<?>... types) in testMethod() method in Test910
47 testMethod(base, methodName, types); in testMethod()
50 private static void testMethod(Class<?> base, String methodName, Class<?>... types) in testMethod() method in Test910
53 testMethod(m, base, true); in testMethod()
[all …]
/art/test/558-switch/src/
DMain.java18 public static boolean testMethod(int statusCode) { in testMethod() method in Main
31 if (!testMethod(301)) { in main()
/art/test/490-checker-inline/src/
DMain.java44 public static void testMethod() { in testMethod() method in Main
50 testMethod(); in main()
/art/test/647-sinking-catch/src/
DMain.java22 public static void testMethod(String method) throws Exception { in testMethod() method in Main
36 testMethod("foo"); in main()
/art/test/181-default-methods/src/
DMain.java27 String output = target.testMethod(); // invoke-virtual Super.testMethod() in expectDefault()
29 String output2 = abstractTarget.testMethod(); // invoke-interface Abstract.testMethod() in expectDefault()
36 String output = target.testMethod(); // invoke-virtual Super.testMethod() in expectConflict()
47 String output = abstractTarget.testMethod(); // invoke-interface Abstract.testMethod() in expectConflict()
61 String output = target.testMethod(); // invoke-virtual Super.testMethod() in expectMiranda()
68 String output = abstractTarget.testMethod(); // invoke-interface Abstract.testMethod() in expectMiranda()
169 String result = abstractTarget.testMethod(); in regressionTestB215510819()
DD1.java18 default String testMethod() { in testMethod() method
DD3.java18 default String testMethod() { in testMethod() method
DAbstract.java20 String testMethod(); in testMethod() method
DD2.java18 default String testMethod() { in testMethod() method
DBase.java20 public String testMethod() { in testMethod() method in Base
DD2M.java18 String testMethod(); in testMethod() method
DD1MD.java18 default String testMethod() { in testMethod() method
DD1M.java18 String testMethod(); in testMethod() method
DD3M.java18 String testMethod(); in testMethod() method
DD1D2M.java18 String testMethod(); in testMethod() method
DD1D2D.java18 default String testMethod() { in testMethod() method
DAD1D2M.java18 String testMethod(); in testMethod() method
DAD1D2D.java18 default String testMethod() { in testMethod() method