Searched refs:totalCount (Results 1 – 7 of 7) sorted by relevance
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | Pagination.java | 45 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()
|
D | TestResults.java | 288 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/ |
D | CodeCoverageFileEntity.java | 61 @Getter @Setter long totalCount; field in CodeCoverageFileEntity 81 long totalCount, in CodeCoverageFileEntity() argument 90 this.totalCount = totalCount; in CodeCoverageFileEntity()
|
D | CoverageEntity.java | 75 @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/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/ |
D | CertificationChecksumHelper.java | 126 int totalCount = countTestResults(results); in tryCreateChecksum() local 128 new CertificationChecksumHelper(totalCount, DEFAULT_FPP, CURRENT_VERSION, in tryCreateChecksum()
|
/test/suite_harness/common/util/src/com/android/compatibility/common/util/ |
D | ChecksumReporter.java | 73 int totalCount = countTestResults(result); in tryCreateChecksum() local 75 new ChecksumReporter(totalCount, DEFAULT_FPP, CURRENT_VERSION); in tryCreateChecksum()
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_coverage.jsp | 177 … <div class="right total-count">${coverageEntity.coveredCount}/${coverageEntity.totalCount}</div>
|