Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DCodeCoverageEntity.java62 @Index @Getter @Setter private long totalLineCount; field in CodeCoverageEntity
71 long totalLineCount) { in CodeCoverageEntity() argument
76 this.totalLineCount = totalLineCount; in CodeCoverageEntity()
84 long totalLineCount) { in CodeCoverageEntity() argument
90 this.totalLineCount = totalLineCount; in CodeCoverageEntity()
94 public CodeCoverageEntity(Key testRunKey, long coveredLineCount, long totalLineCount) { in CodeCoverageEntity() argument
97 this.totalLineCount = totalLineCount; in CodeCoverageEntity()
131 codeCoverageEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount); in toEntity()
DTestCoverageStatusEntity.java64 @Index @Getter @Setter long totalLineCount; field in TestCoverageStatusEntity
93 long totalLineCount, in TestCoverageStatusEntity() argument
98 this.totalLineCount = totalLineCount; in TestCoverageStatusEntity()
202 testEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount); in toEntity()
227 long totalLineCount = -1; in fromEntity() local
232 totalLineCount = (Long) e.getProperty(TOTAL_LINE_COUNT); in fromEntity()
240 testName, timestamp, coveredLineCount, totalLineCount, deviceInfoId); in fromEntity()
DCoverageEntity.java104 long totalLineCount, in CoverageEntity() argument
112 this.totalCount = totalLineCount; in CoverageEntity()
135 long totalLineCount, in CoverageEntity() argument
143 this.totalCount = totalLineCount; in CoverageEntity()
247 long totalLineCount = (long) e.getProperty(TOTAL_LINE_COUNT); in fromEntity() local
261 totalLineCount, in fromEntity()
291 long totalLineCount = coverage.getTotalLineCount(); in fromCoverageReport() local
306 totalLineCount, in fromCoverageReport()
DTestRunEntity.java170 @Index @Getter @Setter private long totalLineCount; field in TestRunEntity
323 this.getKey(), coveredLineCount, totalLineCount); in getCodeCoverageEntity()
445 long totalLineCount = codeCoverageEntity.getTotalLineCount(); in toJson() local
447 if (totalLineCount > 0 && coveredLineCount >= 0) { in toJson()
449 json.add(CodeCoverageEntity.TOTAL_LINE_COUNT, new JsonPrimitive(totalLineCount)); in toJson()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DDatastoreRestServlet.java174 long totalLineCount = 0; in insertTestReport() local
220 totalLineCount += coverageEntity.getTotalCount(); in insertTestReport()
291 totalLineCount += coverageEntity.getTotalCount(); in insertTestReport()
350 boolean hasCodeCoverage = totalLineCount > 0 && coveredLineCount >= 0; in insertTestReport()
371 totalLineCount); in insertTestReport()
DTestDataForDevServlet.java138 private long totalLineCount; field in TestDataForDevServlet.TestReportDataObject.Test.TestRun
154 private long totalLineCount; field in TestDataForDevServlet.TestReportDataObject.Test.TestRun.Coverage
436 testRunCoverage.totalLineCount, in doPost()
504 testRun.totalLineCount > 0 in doPost()
525 testRun.totalLineCount); in doPost()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestResults.java293 long totalLineCount = 0; in processReport() local
296 totalLineCount = codeCoverageEntity.getTotalLineCount(); in processReport()
361 Math.round((100 * coveredLineCount / totalLineCount) * 100f) / 100f; in processReport()
371 coverageInfo = coveredLineCount + "/" + totalLineCount; in processReport()
/test/vti/dashboard/src/main/webapp/js/
Dtest_results.js274 metadata.testRun.totalLineCount != undefined) {
277 var total = metadata.testRun.totalLineCount;
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_coverage_overview.jsp441 … <c:set var="totalLineCnt" value="${codeCoverageEntityMap[testRunEntity.id].totalLineCount}" />