Searched refs:testType (Results 1 – 8 of 8) sorted by relevance
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | TestSuiteResultEntity.java | 98 public TestTypeIndex(int testType) { in TestTypeIndex() argument 99 if (totTypeList.contains(testType)) { in TestTypeIndex() 105 if (otaTypeList.contains(testType)) { in TestTypeIndex() 111 if (signedTypeList.contains(testType)) { in TestTypeIndex() 162 @Getter @Setter int testType; field in TestSuiteResultEntity 232 int testType, in TestSuiteResultEntity() argument 286 this.testType = this.getSuiteResultTestType(testType); in TestSuiteResultEntity() 287 this.testTypeIndex = new TestTypeIndex(this.testType); in TestSuiteResultEntity() 434 public int getSuiteResultTestType(int testType) { in getSuiteResultTestType() argument 435 if (testType == TestType.UNKNOWN.value()) { in getSuiteResultTestType() [all …]
|
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | ShowPlanReleaseServlet.java | 74 String testType = in getBreadcrumbLinks() local 78 if (testType.equals("plan")) { in getBreadcrumbLinks() 79 links.add(new Page(PageType.RELEASE, "TEST PLANS", "?type=" + testType, true)); in getBreadcrumbLinks() 82 links.add(new Page(PageType.RELEASE, "TEST SUITES", "?type=" + testType, true)); in getBreadcrumbLinks() 87 "?plan=" + planName + "&type=" + testType)); in getBreadcrumbLinks() 133 String testType = in doGetHandler() local 137 if (testType.equalsIgnoreCase("plan")) { in doGetHandler() 144 request.setAttribute("testType", testType); in doGetHandler()
|
D | ShowReleaseServlet.java | 60 String testType = in doGetHandler() local 64 if (testType.equalsIgnoreCase("plan")) { in doGetHandler() 71 request.setAttribute("testType", testType); in doGetHandler()
|
D | ShowGreenReleaseServlet.java | 198 String testType = in doGetHandler() local 202 if (testType.equalsIgnoreCase("plan")) { in doGetHandler() 209 request.setAttribute("testType", testType); in doGetHandler()
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_release.jsp | 39 …<a class="${testType == 'plan' ? 'active' : 'inactive'}" href="${requestScope['javax.servlet.forwa… 42 …<a class="${testType == 'suite' ? 'active' : 'inactive'}" href="${requestScope['javax.servlet.forw… 49 …<c:set var="typeParam" scope="session" value="${testType == 'suite' ? '&type=suite' : '&type=plan'…
|
D | show_suite_release.jsp | 164 …requestScope['javax.servlet.forward.servlet_path']}?plan=${plan}&type=${testType}&testCategoryType… 167 …requestScope['javax.servlet.forward.servlet_path']}?plan=${plan}&type=${testType}&testCategoryType… 170 …requestScope['javax.servlet.forward.servlet_path']}?plan=${plan}&type=${testType}&testCategoryType… 327 …requestScope['javax.servlet.forward.servlet_path']}?plan=${plan}&type=${testType}&testCategoryType… 338 …requestScope['javax.servlet.forward.servlet_path']}?plan=${plan}&type=${testType}&testCategoryType… 346 …requestScope['javax.servlet.forward.servlet_path']}?plan=${plan}&type=${testType}&testCategoryType…
|
/test/vti/dashboard/src/main/java/com/android/vts/api/ |
D | DatastoreRestServlet.java | 457 long testType = -1; in insertTestPlanReport() local 468 testType = testRunEntity.getType(); in insertTestPlanReport() 482 if (startTimestamp < 0 || testBuildId == null || testType == -1) { in insertTestPlanReport() 485 log.debug("type => " + testType); in insertTestPlanReport() 494 testType, in insertTestPlanReport()
|
D | TestDataForDevServlet.java | 390 String testType = pathParts[1]; in doPost() local 391 if (testType.equalsIgnoreCase("report")) { in doPost()
|