Searched refs:totalCount (Results 1 – 5 of 5) sorted by relevance
45 private int totalCount; field in Pagination65 public Pagination(List<T> list, int page, int pageSize, int totalCount) { in Pagination() argument69 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()
288 int totalCount = 0; in processReport() local303 totalCount += testCaseEntity.testCases.size(); in processReport()431 summaryGrid[0][col + 1] = Integer.toString(totalCount); in processReport()
61 @Getter @Setter long totalCount; field in CodeCoverageFileEntity81 long totalCount, in CodeCoverageFileEntity() argument90 this.totalCount = totalCount; in CodeCoverageFileEntity()
75 @Getter @Setter private long totalCount; field in CoverageEntity112 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()
177 … <div class="right total-count">${coverageEntity.coveredCount}/${coverageEntity.totalCount}</div>