Home
last modified time | relevance | path

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

/art/test/993-breakpoints/
Dexpected.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 {
468 Method breakit_method_tc3 = TestClass3.class.getDeclaredMethod("breakit");
587 new InvokeNative(breakit_method, new TestClass3()),
588 new InvokeNative(breakit_method_tc3, new TestClass3()),
590 new InvokeReflect(breakit_method, new TestClass3()),
591 new InvokeReflect(breakit_method_tc3, new TestClass3()),
594 () -> ((Breakable)new TestClass3()).breakit()),
596 () -> new TestClass3().breakit()),
616 () -> ((TestClass3)new TestClass3ext()).breakit()),
/art/test/530-checker-lse/smali/
DMain.smali260 # TestClass3 obj = new TestClass3();
/art/test/530-checker-lse/src/
DMain.java60 class TestClass3 { class