Home
last modified time | relevance | path

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

/art/test/990-field-trace/
Dexpected-stdout.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_cts.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 …]
Dexpected-stdout.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-stdout.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/1966-get-set-local-objects-no-table/
Dexpected-stdout.txt14 ….TestCases1966.ObjectMethod(java.util.function.IntConsumer) set value: TestClass2("Set TestClass2")
15 Value is 'TestClass2("Set TestClass2")' (class: class art.Test1966$TestClass2)
17 …bjectMethod(java.util.function.IntConsumer) set value: TestClass2impl("TestClass2("Set TestClass2i…
18 …Value is 'TestClass2impl("TestClass2("Set TestClass2impl")")' (class: class art.Test1966$TestClass…
32 …faceMethod(java.util.function.IntConsumer) failed to set value TestClass2("Set TestClass2") due to…
35 …od(java.util.function.IntConsumer) failed to set value TestClass2impl("TestClass2("Set TestClass2i…
50 …xactMethod(java.util.function.IntConsumer) failed to set value TestClass2("Set TestClass2") due to…
53 …od(java.util.function.IntConsumer) failed to set value TestClass2impl("TestClass2("Set TestClass2i…
68 …faceMethod(java.util.function.IntConsumer) failed to set value TestClass2("Set TestClass2") due to…
71 …rfaceMethod(java.util.function.IntConsumer) set value: TestClass2impl("TestClass2("Set TestClass2i…
[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/1966-get-set-local-objects-no-table/src/art/
DTest1966.java68 public static class TestClass2 { class in Test1966
70 public TestClass2(String id) { in TestClass2() method in Test1966.TestClass2
77 public static class TestClass2impl extends TestClass2 implements TestInterface {
227 NamedSet("TestClass2", set_obj, new TestClass2("Set TestClass2")),
/art/test/993-breakpoints/src/art/
DTest993.java80 public static class TestClass2 implements Breakable { class in Test993
88 public static class TestClass2ext extends TestClass2 {
475 Method breakit_method_tc2 = TestClass2.class.getDeclaredMethod("breakit");
556 new InvokeNative(breakit_method, new TestClass2()),
557 new InvokeNative(breakit_method_tc2, new TestClass2()),
559 new InvokeReflect(breakit_method, new TestClass2()),
560 new InvokeReflect(breakit_method_tc2, new TestClass2()),
563 () -> ((Breakable)new TestClass2()).breakit()),
565 () -> new TestClass2().breakit()),
585 () -> ((TestClass2)new TestClass2ext()).breakit()),
/art/test/530-checker-lse/src/
DMain.java54 class TestClass2 { class
432 static int test13(TestClass obj1, TestClass2 obj2) { in test13()
1002 TestClass2 obj = new TestClass2(); in test32()
1520 private static TestClass2 testStoreStore() { in testStoreStore()
1521 TestClass2 obj = new TestClass2(); in testStoreStore()
1540 private static void testStoreStore2(TestClass2 obj) { in testStoreStore2()
1562 private static void testStoreStore3(TestClass2 obj, boolean flag) { in testStoreStore3()
1595 private static int testStoreStore5(TestClass2 obj1, TestClass2 obj2) { in testStoreStore5()
1612 private static int testStoreStore6(TestClass2 obj1, TestClass2 obj2) { in testStoreStore6()
1648 private static void testThrow(TestClass2 obj, Exception e) throws Exception { in testThrow()
[all …]
/art/test/1913-get-set-local-objects/src/art/
DTest1913.java57 public static class TestClass2 { class in Test1913
59 public TestClass2(String id) { in TestClass2() method in Test1913.TestClass2
66 public static class TestClass2impl extends TestClass2 implements TestInterface {
270 NamedSet("TestClass2", set_obj, new TestClass2("Set TestClass2")),