Home
last modified time | relevance | path

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

/aosp12/art/test/1929-exception-catch-exception/
H A Dexpected-stdout.txt1 Test "art.Test1929$DoThrowClass": Running breakpoint with handler "art.Test1929$DoNothingHandler"
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…
23 Test "art.Test1929$DoThrowCatchBaseTestException": No error caught with handler "art.Test1929$DoNot…
51 Test "art.Test1929$DoThrowCatchTestException": No error caught with handler "art.Test1929$DoNothing…
77 Test "art.Test1929$DoThrowClass": Running breakpoint with handler "art.Test1929$ThrowCatchBase"
85 Test "art.Test1929$DoThrowClass": Caught error art.Test1929$TestException:"doThrow" with handler "a…
86 Test "art.Test1929$DoThrowClass": Finished running with handler "art.Test1929$ThrowCatchBase"
163 Test "art.Test1929$DoThrowClass": Caught error art.Test1929$TestException:"doThrow" with handler "a…
[all …]
/aosp12/art/test/1929-exception-catch-exception/smali/art/
H A DTest1929$Impl.smali20 .class public final Lart/Test1929$Impl;
22 .source "Test1929.java"
27 value = Lart/Test1929;
53 new-instance v1, Lart/Test1929$TestException;
70 .local v0, "t":Lart/Test1929$BaseTestException;
122 sget-boolean v1, Lart/Test1929;->PRINT_FULL_EXCEPTION:Z
194 sget-boolean v1, Lart/Test1929;->PRINT_FULL_EXCEPTION:Z
212 new-instance v1, Lart/Test1929$TestException;
229 .local v0, "t":Lart/Test1929$TestException;
281 sget-boolean v1, Lart/Test1929;->PRINT_FULL_EXCEPTION:Z
[all …]
/aosp12/art/test/1929-exception-catch-exception/src/art/
H A 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()
/aosp12/art/test/1929-exception-catch-exception/src/
H A DMain.java19 art.Test1929.run(); in main()