Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/util/
DPagination.java45 private int totalCount; field in Pagination
65 public Pagination(List<T> list, int page, int pageSize, int totalCount) { in Pagination() argument
69 this.totalCount = totalCount; in Pagination()
97 this.totalCount = query.count(); in Pagination()
100 this.totalCount = query.count(); in Pagination()
104 this.totalCount / this.pageSize + (this.totalCount % this.pageSize == 0 ? 0 : 1); in Pagination()
133 return totalCount; in getTotalCount()
DTestResults.java288 int totalCount = 0; in processReport() local
303 totalCount += testCaseEntity.testCases.size(); in processReport()
431 summaryGrid[0][col + 1] = Integer.toString(totalCount); in processReport()
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DCodeCoverageFileEntity.java61 @Getter @Setter long totalCount; field in CodeCoverageFileEntity
81 long totalCount, in CodeCoverageFileEntity() argument
90 this.totalCount = totalCount; in CodeCoverageFileEntity()
DCoverageEntity.java75 @Getter @Setter private long totalCount; field in CoverageEntity
112 this.totalCount = totalLineCount; in CoverageEntity()
143 this.totalCount = totalLineCount; in CoverageEntity()
176 return Math.round(coveredCount * 10000d / totalCount) / 100d; in getPercentage()
216 coverageEntity.setUnindexedProperty(TOTAL_LINE_COUNT, totalCount); in toEntity()
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_coverage.jsp177 … <div class="right total-count">${coverageEntity.coveredCount}/${coverageEntity.totalCount}</div>