/art/test/181-default-methods/ |
D | expected-stdout.txt | 2 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/ |
D | Main.java | 142 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/ |
D | Test910.java | 29 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/ |
D | Main.java | 18 public static boolean testMethod(int statusCode) { in testMethod() method in Main 31 if (!testMethod(301)) { in main()
|
/art/test/490-checker-inline/src/ |
D | Main.java | 44 public static void testMethod() { in testMethod() method in Main 50 testMethod(); in main()
|
/art/test/647-sinking-catch/src/ |
D | Main.java | 22 public static void testMethod(String method) throws Exception { in testMethod() method in Main 36 testMethod("foo"); in main()
|
/art/test/181-default-methods/src/ |
D | Main.java | 27 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()
|
D | D1.java | 18 default String testMethod() { in testMethod() method
|
D | D3.java | 18 default String testMethod() { in testMethod() method
|
D | Abstract.java | 20 String testMethod(); in testMethod() method
|
D | D2.java | 18 default String testMethod() { in testMethod() method
|
D | Base.java | 20 public String testMethod() { in testMethod() method in Base
|
D | D2M.java | 18 String testMethod(); in testMethod() method
|
D | D1MD.java | 18 default String testMethod() { in testMethod() method
|
D | D1M.java | 18 String testMethod(); in testMethod() method
|
D | D3M.java | 18 String testMethod(); in testMethod() method
|
D | D1D2M.java | 18 String testMethod(); in testMethod() method
|
D | D1D2D.java | 18 default String testMethod() { in testMethod() method
|
D | AD1D2M.java | 18 String testMethod(); in testMethod() method
|
D | AD1D2D.java | 18 default String testMethod() { in testMethod() method
|