/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | CodeCoverageEntity.java | 62 @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()
|
D | TestCoverageStatusEntity.java | 64 @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()
|
D | CoverageEntity.java | 104 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()
|
D | TestRunEntity.java | 170 @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/ |
D | DatastoreRestServlet.java | 174 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()
|
D | TestDataForDevServlet.java | 138 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/ |
D | TestResults.java | 293 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/ |
D | test_results.js | 274 metadata.testRun.totalLineCount != undefined) { 277 var total = metadata.testRun.totalLineCount;
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_coverage_overview.jsp | 441 … <c:set var="totalLineCnt" value="${codeCoverageEntityMap[testRunEntity.id].totalLineCount}" />
|