Home
last modified time | relevance | path

Searched refs:TestClass2 (Results 1 – 7 of 7) sorted by relevance

/art/test/990-field-trace/
Dexpected.txt3 MODIFY of static long art.Test990$TestClass2.TOTAL on object of type: null in method art.Test990$Te…
4 MODIFY of int art.Test990$TestClass1.xyz on object of type: class art.Test990$TestClass2 in method …
5 …Object art.Test990$TestClass1.abc on object of type: class art.Test990$TestClass2 in method public…
6 …DIFY of long art.Test990$TestClass2.baz on object of type: class art.Test990$TestClass2 in method …
10 …New value: TestClass1 { abc: "TESTING", xyz: 1337, foobar: 0 } (type: class art.Test990$TestClass2)
17 ACCESS of static long art.Test990$TestClass2.TOTAL on object of type null in method public void art…
18 MODIFY of static long art.Test990$TestClass2.TOTAL on object of type: null in method public void ar…
19 ACCESS of int art.Test990$TestClass1.xyz on object of type class art.Test990$TestClass2 in method p…
20 …SS of long art.Test990$TestClass2.baz on object of type class art.Test990$TestClass2 in method pub…
21 …FY of long art.Test990$TestClass2.baz on object of type: class art.Test990$TestClass2 in method pu…
[all …]
/art/test/993-breakpoints/
Dexpected.txt110 Running TestClass2 invokes
112 Native invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass2]
113 Native invoking: public void art.Test993$TestClass2.breakit() args: [this: TestClass2]
114 Reflective invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass2]
115 Reflective invoking: public void art.Test993$TestClass2.breakit() args: [this: TestClass2]
116 Invoking "((Breakable)new TestClass2()).breakit()"
117 Invoking "new TestClass2().breakit()"
119 Native invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass2]
120 Native invoking: public void art.Test993$TestClass2.breakit() args: [this: TestClass2]
121 Reflective invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass2]
[all …]
/art/test/1913-get-set-local-objects/
Dexpected.txt14 …c static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: TestClass2("Set TestClass2")
15 Value is 'TestClass2("Set TestClass2")' (class: class art.Test1913$TestClass2)
17 …t.Test1913.ObjectMethod(java.lang.Runnable) set value: TestClass2impl("TestClass2("Set TestClass2i…
18 …Value is 'TestClass2impl("TestClass2("Set TestClass2impl")")' (class: class art.Test1913$TestClass…
32 …st1913.InterfaceMethod(java.lang.Runnable) failed to set value TestClass2("Set TestClass2") due to…
35 …est1913.InterfaceMethod(java.lang.Runnable) set value: TestClass2impl("TestClass2("Set TestClass2i…
36 …Value is 'TestClass2impl("TestClass2("Set TestClass2impl")")' (class: class art.Test1913$TestClass…
50 …13.SpecificClassMethod(java.lang.Runnable) failed to set value TestClass2("Set TestClass2") due to…
53 …ficClassMethod(java.lang.Runnable) failed to set value TestClass2impl("TestClass2("Set TestClass2i…
68 …st1913.PrimitiveMethod(java.lang.Runnable) failed to set value TestClass2("Set TestClass2") due to…
[all …]
/art/test/530-checker-lse/src/
DMain.java53 class TestClass2 { class
370 static int test13(TestClass obj1, TestClass2 obj2) { in test13()
766 private static TestClass2 testStoreStore() { in testStoreStore()
767 TestClass2 obj = new TestClass2(); in testStoreStore()
786 private static void testStoreStore2(TestClass2 obj) { in testStoreStore2()
805 private static void testStoreStore3(TestClass2 obj, boolean flag) { in testStoreStore3()
838 private static int testStoreStore5(TestClass2 obj1, TestClass2 obj2) { in testStoreStore5()
855 private static int testStoreStore6(TestClass2 obj1, TestClass2 obj2) { in testStoreStore6()
891 private static void testThrow(TestClass2 obj, Exception e) throws Exception { in testThrow()
925 TestClass2 obj = new TestClass2(); in testStoreStoreWithDeoptimize()
[all …]
/art/test/990-field-trace/src/art/
DTest990.java175 static class TestClass2 extends TestClass1 {
178 public TestClass2(long baz) {
208 TestClass1 t2 = new TestClass2(2);
218 t4.tweak((int)((TestClass2)t2).baz);
219 t4.tweak((int)TestClass2.TOTAL);
220 t2.tweak((int)TestClass2.TOTAL);
/art/test/993-breakpoints/src/art/
DTest993.java80 public static class TestClass2 implements Breakable { class in Test993
88 public static class TestClass2ext extends TestClass2 {
466 Method breakit_method_tc2 = TestClass2.class.getDeclaredMethod("breakit");
547 new InvokeNative(breakit_method, new TestClass2()),
548 new InvokeNative(breakit_method_tc2, new TestClass2()),
550 new InvokeReflect(breakit_method, new TestClass2()),
551 new InvokeReflect(breakit_method_tc2, new TestClass2()),
554 () -> ((Breakable)new TestClass2()).breakit()),
556 () -> new TestClass2().breakit()),
576 () -> ((TestClass2)new TestClass2ext()).breakit()),
/art/test/1913-get-set-local-objects/src/art/
DTest1913.java49 public static class TestClass2 { class in Test1913
51 public TestClass2(String id) { this.id = id; } in TestClass2() method in Test1913.TestClass2
54 public static class TestClass2impl extends TestClass2 implements TestInterface {
240 NamedSet("TestClass2", set_obj, new TestClass2("Set TestClass2")),