Home
last modified time | relevance | path

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

/art/test/995-breakpoints-throw/
Dexpected.txt1 Test "call Test995::breakpoint": Running breakpoint with handler "do nothing"
2 Breakpoint: public static void art.Test995.breakpoint() @ line=34
3 Test "call Test995::breakpoint": No error caught with handler "do nothing"
4 Test "call Test995::breakpoint": Finished running with handler "do nothing"
5 Test "call Test995::breakpointCatch": Running breakpoint with handler "do nothing"
6 Breakpoint: public static void art.Test995.breakpointCatch() @ line=48
7 Test "call Test995::breakpointCatch": No error caught with handler "do nothing"
8 Test "call Test995::breakpointCatch": Finished running with handler "do nothing"
9 Test "call Test995::breakpointCatchLate": Running breakpoint with handler "do nothing"
10 Breakpoint: public static void art.Test995.breakpointCatchLate() @ line=38
[all …]
/art/test/995-breakpoints-throw/src/art/
DTest995.java23 public class Test995 { class
82 Test995.class,
83 Test995.class.getDeclaredMethod(
87 Method breakpoint_method = Test995.class.getDeclaredMethod("breakpoint");
88 Method breakpoint_catch_method = Test995.class.getDeclaredMethod("breakpointCatch");
89 Method breakpoint_catch_late_method = Test995.class.getDeclaredMethod("breakpointCatchLate");
102 makeTest("call Test995::breakpoint", Test995::breakpoint),
103 makeTest("call Test995::breakpointCatch", Test995::breakpointCatch),
104 makeTest("call Test995::breakpointCatchLate", Test995::breakpointCatchLate),
/art/test/995-breakpoints-throw/src/
DMain.java19 art.Test995.run(); in main()
/art/test/
DAndroid.bp736 "995-breakpoints-throw/src/art/Test995.java",