Home
last modified time | relevance | path

Searched refs:Test1929 (Results 1 – 4 of 4) sorted by relevance

/art/test/1929-exception-catch-exception/
Dexpected-stdout.txt1 Test "art.Test1929$DoThrowClass": Running breakpoint with handler "art.Test1929$DoNothingHandler"
2 main: public static void art.Test1929.run() throws java.lang.Exception @ line = 298 caught class ar…
6 private static void art.Test1929.PrintStack() @ line = 52
7 …public static void art.Test1929.ExceptionCatchEvent(java.lang.Thread,java.lang.reflect.Executable,…
8 public static void art.Test1929.run() throws java.lang.Exception @ line = 298
9 Test "art.Test1929$DoThrowClass": Caught error art.Test1929$TestException:"doThrow" with handler "a…
10 Test "art.Test1929$DoThrowClass": Finished running with handler "art.Test1929$DoNothingHandler"
11 Test "art.Test1929$DoThrowCatchBaseTestException": Running breakpoint with handler "art.Test1929$Do…
12 main: public static void art.Test1929.throwCatchBaseTestException() @ line = 140 caught class art.T…
16 private static void art.Test1929.PrintStack() @ line = 52
[all …]
/art/test/1929-exception-catch-exception/smali/art/
DTest1929$Impl.smali20 .class public final Lart/Test1929$Impl;
22 .source "Test1929.java"
27 value = Lart/Test1929;
53 new-instance v1, Lart/Test1929$TestException;
57 invoke-direct {v1, v2}, Lart/Test1929$TestException;-><init>(Ljava/lang/String;)V
61 .catch Lart/Test1929$BaseTestException; {:try_start_0 .. :try_end_8} :catch_8
70 .local v0, "t":Lart/Test1929$BaseTestException;
101 invoke-virtual {v0}, Lart/Test1929$BaseTestException;->getMessage()Ljava/lang/String;
122 sget-boolean v1, Lart/Test1929;->PRINT_FULL_EXCEPTION:Z
129 … invoke-virtual {v0, v1}, Lart/Test1929$BaseTestException;->printStackTrace(Ljava/io/PrintStream;)V
[all …]
/art/test/1929-exception-catch-exception/src/art/
DTest1929.java25 public class Test1929 { class
34 Test1929.class.getDeclaredMethod("doThrow"),
35 Test1929.class.getDeclaredMethod("throwCatchBaseTestException"),
36 Test1929.class.getDeclaredMethod("throwCatchBaseTestExceptionTwice"),
37 Test1929.class.getDeclaredMethod("throwCatchTestException"),
38 Test1929.class.getDeclaredMethod("throwCatchTestExceptionTwice"),
39 Test1929.class.getDeclaredMethod("throwCatchTestExceptionNoRethrow"));
53 if (Objects.equals(e.method.getDeclaringClass().getPackage(), Test1929.class.getPackage())) { in PrintStack()
262 Test1929.class, in run()
265 Test1929.class.getDeclaredMethod( in run()
/art/test/1929-exception-catch-exception/src/
DMain.java19 art.Test1929.run(); in main()