Searched refs:TestConfig (Results 1 – 4 of 4) sorted by relevance
/art/test/913-heaps/src/art/ |
D | Test913.java | 55 new TestConfig().doFollowReferencesTest(); in runFollowReferences() 60 new TestConfig(null, 0, 1, -1).doFollowReferencesTest(); in runFollowReferences() 65 new TestConfig(null, 0, Integer.MAX_VALUE, 1).doFollowReferencesTest(); in runFollowReferences() 83 new TestConfig(A.class, 0).doFollowReferencesTest(); in runFollowReferences() 88 new TestConfig(null, 0x4).doFollowReferencesTest(); in runFollowReferences() 90 new TestConfig(null, 0x8).doFollowReferencesTest(); in runFollowReferences() 92 new TestConfig(null, 0x10).doFollowReferencesTest(); in runFollowReferences() 94 new TestConfig(null, 0x20).doFollowReferencesTest(); in runFollowReferences() 332 private static class TestConfig { class in Test913 338 public TestConfig() { in TestConfig() method in Test913.TestConfig [all …]
|
/art/test/1970-force-early-return-long/src/art/ |
D | Test1970.java | 152 final class TestConfig { 156 public TestConfig(TestRunnable obj, TestSuspender su) { 163 runTestOn(() -> new TestConfig(testObjGen.get(), su)); 166 public void runTestOn(Supplier<TestConfig> config) throws Exception { 167 TestConfig normal_config = config.get(); 182 TestConfig force_return_config = config.get(); 823 return new TestConfig(sso, new TestSuspender() {
|
/art/test/1968-force-early-return/src/art/ |
D | Test1968.java | 179 final class TestConfig { 183 public TestConfig(TestRunnable obj, TestSuspender su) { 190 runTestOn(() -> new TestConfig(testObjGen.get(), su)); 193 public void runTestOn(Supplier<TestConfig> config) throws Exception { 194 TestConfig normal_config = config.get(); 209 TestConfig force_return_config = config.get(); 848 return new TestConfig(sso, new TestSuspender() {
|
/art/test/1969-force-early-return-void/src/art/ |
D | Test1969.java | 141 final class TestConfig { 145 public TestConfig(Runnable obj, TestSuspender su) { 152 runTestOn(() -> new TestConfig(testObjGen.get(), su)); 155 public void runTestOn(Supplier<TestConfig> config) throws Exception { 156 TestConfig normal_config = config.get(); 170 TestConfig force_return_config = config.get(); 878 return new TestConfig(
|