Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestCoverageStatusEntity.java52 public static final String TOTAL_LINE_COUNT = "totalLineCount"; field in TestCoverageStatusEntity
202 testEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount); in toEntity()
219 || !e.hasProperty(TOTAL_LINE_COUNT) in fromEntity()
232 totalLineCount = (Long) e.getProperty(TOTAL_LINE_COUNT); in fromEntity()
DCoverageEntity.java59 public static final String TOTAL_LINE_COUNT = "totalCount"; field in CoverageEntity
216 coverageEntity.setUnindexedProperty(TOTAL_LINE_COUNT, totalCount); in toEntity()
237 || !e.hasProperty(TOTAL_LINE_COUNT) in fromEntity()
247 long totalLineCount = (long) e.getProperty(TOTAL_LINE_COUNT); in fromEntity()
DCodeCoverageEntity.java53 public static final String TOTAL_LINE_COUNT = "totalLineCount"; field in CodeCoverageEntity
131 codeCoverageEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount); in toEntity()
DTestRunEntity.java449 json.add(CodeCoverageEntity.TOTAL_LINE_COUNT, new JsonPrimitive(totalLineCount)); in toJson()