Home | History | Annotate | Download | only in utils

Lines Matching defs:testType

111         final TestType testType = TestType.getTestType(androidMakeFile);
148 if (testType.type == TestType.HOST_SIDE_ONLY) {
150 setAttribute(testPackageElem, ATTRIBUTE_JAR_PATH, testType.jarPath);
153 if (testType.type == TestType.VM_HOST_TEST) {
155 setAttribute(testPackageElem, ATTRIBUTE_JAR_PATH, testType.jarPath);
287 private static class TestType {
295 private TestType (int type, String jarPath) {
300 private static TestType getTestType(String makeFileName) {
302 return new TestType(DEVICE_SIDE_ONLY, null);
304 int type = TestType.DEVICE_SIDE_ONLY;
324 return new TestType(type, jarPath);