Searched refs:TestClass1 (Results 1 – 8 of 8) sorted by relevance
/art/test/991-field-trace-2/ |
D | expected.txt | 4 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 7 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 12 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 18 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 21 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 27 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 30 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 35 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 38 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… 43 …st991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Tes… [all …]
|
/art/test/990-field-trace/ |
D | expected.txt | 1 …ODIFY of int art.Test990$TestClass1.xyz on object of type: class art.Test990$TestClass1 in method … 2 ….lang.Object art.Test990$TestClass1.abc on object of type: class art.Test990$TestClass1 in method … 4 …ODIFY of int art.Test990$TestClass1.xyz on object of type: class art.Test990$TestClass2 in method … 5 ….lang.Object art.Test990$TestClass1.abc on object of type: class art.Test990$TestClass2 in method … 7 …ODIFY of int art.Test990$TestClass1.xyz on object of type: class art.Test990$TestClass1 in method … 8 …TestClass1.abc on object of type: class art.Test990$TestClass1 in method public art.Test990$TestCl… 9 …ODIFY of int art.Test990$TestClass1.xyz on object of type: class art.Test990$TestClass1 in method … 10 …90$TestClass1.abc on object of type: class art.Test990$TestClass1 in method public art.Test990$Tes… 11 …ESS of int art.Test990$TestClass1.xyz on object of type class art.Test990$TestClass1 in method pub… 12 …SS of int art.Test990$TestClass1.foobar on object of type class art.Test990$TestClass1 in method p… [all …]
|
/art/test/991-field-trace-2/src/art/ |
D | Test991.java | 26 static List<Field> WATCH_FIELDS = Arrays.asList(TestClass1.class.getDeclaredFields()); 76 ((TestClass1)t).xyz += 100; in handleFieldModify() 82 ((TestClass1)t).xyz += 10; in handleFieldAccess() 91 ((TestClass1)t).xyz += 200; in handleFieldModify() 100 ((TestClass1)t).xyz += 20; in handleFieldAccess() 118 public static class TestClass1 { class in Test991 120 public TestClass1(int xyz) { in TestClass1() method in Test991.TestClass1 125 public static int readFieldUntraced(TestClass1 target) { in readFieldUntraced() 133 public static class JavaReadWrite implements Consumer<TestClass1> { 134 public void accept(TestClass1 t1) { in accept() [all …]
|
/art/test/1913-get-set-local-objects/ |
D | expected.txt | 2 …lic static void art.Test1913.ObjectMethod(java.lang.Runnable) got value: TestClass1("ObjectMethod") 3 Value is 'TestClass1("ObjectMethod")' (class: class art.Test1913$TestClass1) 8 …c static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: TestClass1("Set TestClass1") 9 Value is 'TestClass1("Set TestClass1")' (class: class art.Test1913$TestClass1) 11 …rt.Test1913.ObjectMethod(java.lang.Runnable) set value: TestClass1ext("TestClass1("Set TestClass1e… 12 …Value is 'TestClass1ext("TestClass1("Set TestClass1ext")")' (class: class art.Test1913$TestClass1e… 20 …tatic void art.Test1913.InterfaceMethod(java.lang.Runnable) got value: TestClass1("InterfaceMethod… 21 Value is 'TestClass1("InterfaceMethod")' (class: class art.Test1913$TestClass1) 26 …tatic void art.Test1913.InterfaceMethod(java.lang.Runnable) set value: TestClass1("Set TestClass1") 27 Value is 'TestClass1("Set TestClass1")' (class: class art.Test1913$TestClass1) [all …]
|
/art/test/990-field-trace/src/art/ |
D | Test990.java | 155 static class TestClass1 { 159 public TestClass1(int xyz, Object abc) { 175 static class TestClass2 extends TestClass1 { 207 TestClass1 t1 = new TestClass1(1, "tc1"); 208 TestClass1 t2 = new TestClass2(2); 209 TestClass1 t3 = new TestClass1(3, t1); 210 TestClass1 t4 = new TestClass1(4, t2);
|
/art/test/1913-get-set-local-objects/src/art/ |
D | Test1913.java | 39 public static class TestClass1 implements TestInterface { class in Test1913 41 public TestClass1(String id) { this.id = id; } in TestClass1() method in Test1913.TestClass1 45 public static class TestClass1ext extends TestClass1 { 73 Object TARGET = AsObject(new TestClass1("ObjectMethod")); in ObjectMethod() 79 TestInterface TARGET = new TestClass1("InterfaceMethod"); in InterfaceMethod() 85 TestClass1 TARGET = new TestClass1("SpecificClassMethod"); in SpecificClassMethod() 238 NamedSet("TestClass1", set_obj, new TestClass1("Set TestClass1")),
|
/art/test/993-breakpoints/src/art/ |
D | Test993.java | 60 public static class TestClass1 implements Breakable { class in Test993 61 public TestClass1() { in TestClass1() method in Test993.TestClass1 68 public static class TestClass1ext extends TestClass1 { 347 Constructor<?> tc1_construct = TestClass1.class.getConstructor(); 353 new ConstructDirect("new TestClass1()", TestClass1::new), 511 new InvokeNative(breakit_method, new TestClass1()), 513 new InvokeReflect(breakit_method, new TestClass1()), 516 () -> ((Breakable)new TestClass1()).breakit()), 518 () -> new TestClass1().breakit()), 536 () -> ((TestClass1)new TestClass1ext()).breakit()),
|
/art/test/993-breakpoints/ |
D | expected.txt | 34 Running TestClass1 invokes 36 Native invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass1] 37 Reflective invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass1] 38 Invoking "((Breakable)new TestClass1()).breakit()" 39 Invoking "new TestClass1().breakit()" 41 Native invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass1] 43 Reflective invoking: public default void art.Test993$Breakable.breakit() args: [this: TestClass1] 45 Invoking "((Breakable)new TestClass1()).breakit()" 47 Invoking "new TestClass1().breakit()" 56 Invoking "((TestClass1)new TestClass1ext()).breakit()" [all …]
|