Home
last modified time | relevance | path

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

/cts/tools/utils/
DCollectAllTests.java111 final TestType testType = TestType.getTestType(androidMakeFile); in main()
148 if (testType.type == TestType.HOST_SIDE_ONLY) { in main()
153 if (testType.type == TestType.VM_HOST_TEST) { in main()
287 private static class TestType { class in CollectAllTests
295 private TestType (int type, String jarPath) { in TestType() method in CollectAllTests.TestType
300 private static TestType getTestType(String makeFileName) { in getTestType()
302 return new TestType(DEVICE_SIDE_ONLY, null); in getTestType()
304 int type = TestType.DEVICE_SIDE_ONLY; in getTestType()
324 return new TestType(type, jarPath); in getTestType()