Home
last modified time | relevance | path

Searched refs:COVERED_LINE_COUNT (Results 1 – 4 of 4) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestCoverageStatusEntity.java53 public static final String COVERED_LINE_COUNT = "coveredLineCount"; field in TestCoverageStatusEntity
201 testEntity.setProperty(COVERED_LINE_COUNT, this.coveredLineCount); in toEntity()
218 || !e.hasProperty(COVERED_LINE_COUNT) in fromEntity()
231 coveredLineCount = (Long) e.getProperty(COVERED_LINE_COUNT); in fromEntity()
DCoverageEntity.java58 public static final String COVERED_LINE_COUNT = "coveredCount"; field in CoverageEntity
215 coverageEntity.setUnindexedProperty(COVERED_LINE_COUNT, coveredCount); in toEntity()
236 || !e.hasProperty(COVERED_LINE_COUNT) in fromEntity()
246 long coveredLineCount = (long) e.getProperty(COVERED_LINE_COUNT); in fromEntity()
DCodeCoverageEntity.java52 public static final String COVERED_LINE_COUNT = "coveredLineCount"; field in CodeCoverageEntity
130 codeCoverageEntity.setProperty(COVERED_LINE_COUNT, this.coveredLineCount); in toEntity()
DTestRunEntity.java448 … json.add(CodeCoverageEntity.COVERED_LINE_COUNT, new JsonPrimitive(coveredLineCount)); in toJson()