Home
last modified time | relevance | path

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

/art/test/993-breakpoints/
Dexpected_cts.txt304 Running TestClass3 invokes
306 Native invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass3]
307 Native invoking: public void art.Test993$TestClass3.breakit() args: [this: TestClass3]
308 Reflective invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass3]
309 Reflective invoking: public void art.Test993$TestClass3.breakit() args: [this: TestClass3]
310 Invoking "((Breakable)new TestClass3()).breakit()"
311 Invoking "new TestClass3().breakit())"
313 Native invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass3]
315 Native invoking: public void art.Test993$TestClass3.breakit() args: [this: TestClass3]
317 Reflective invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass3]
[all …]
Dexpected-stdout.txt304 Running TestClass3 invokes
306 Native invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass3]
307 Native invoking: public void art.Test993$TestClass3.breakit() args: [this: TestClass3]
308 Reflective invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass3]
309 Reflective invoking: public void art.Test993$TestClass3.breakit() args: [this: TestClass3]
310 Invoking "((Breakable)new TestClass3()).breakit()"
311 Invoking "new TestClass3().breakit())"
313 Native invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass3]
315 Native invoking: public void art.Test993$TestClass3.breakit() args: [this: TestClass3]
317 Reflective invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass3]
[all …]
/art/test/993-breakpoints/src/art/
DTest993.java96 public static class TestClass3 implements Breakable { class in Test993
105 public static class TestClass3ext extends TestClass3 {
477 Method breakit_method_tc3 = TestClass3.class.getDeclaredMethod("breakit");
596 new InvokeNative(breakit_method, new TestClass3()),
597 new InvokeNative(breakit_method_tc3, new TestClass3()),
599 new InvokeReflect(breakit_method, new TestClass3()),
600 new InvokeReflect(breakit_method_tc3, new TestClass3()),
603 () -> ((Breakable)new TestClass3()).breakit()),
605 () -> new TestClass3().breakit()),
625 () -> ((TestClass3)new TestClass3ext()).breakit()),
/art/test/530-checker-lse/src/
DMain.java62 class TestClass3 { class
690 TestClass3 obj = new TestClass3(); in test24()
782 TestClass3 obj = new TestClass3(); in test26()
901 TestClass3 obj = new TestClass3(); in test29()