HomeSort by relevance Sort by last modified time
    Searched refs:totalLineCount (Results 1 - 15 of 15) sorted by null

  /test/vti/dashboard/src/main/java/com/android/vts/entity/
TestCoverageStatusEntity.java 31 public static final String TOTAL_LINE_COUNT = "totalLineCount";
37 public final long totalLineCount;
46 * @param totalLineCount The total number of lines.
49 String testName, long timestamp, long coveredLineCount, long totalLineCount) {
53 this.totalLineCount = totalLineCount;
61 testEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount);
85 long totalLineCount = -1;
89 totalLineCount = (Long) e.getProperty(TOTAL_LINE_COUNT);
95 return new TestCoverageStatusEntity(testName, timestamp, coveredLineCount, totalLineCount);
    [all...]
CoverageEntity.java 46 public final long totalLineCount;
58 * @param totalLineCount The total number of uncovered executable lines in the file.
64 public CoverageEntity(Key parentKey, String group, long coveredLineCount, long totalLineCount,
69 this.totalLineCount = totalLineCount;
81 coverageEntity.setUnindexedProperty(TOTAL_LINE_COUNT, totalLineCount);
108 long totalLineCount = (long) e.getProperty(TOTAL_LINE_COUNT);
119 totalLineCount, filePath, projectName, projectVersion, lineCoverage);
142 long totalLineCount = coverage.getTotalLineCount();
153 return new CoverageEntity(parentKey, group, coveredLineCount, totalLineCount, filePath
    [all...]
TestRunEntity.java 116 public static final String TOTAL_LINE_COUNT = "totalLineCount";
129 public final long totalLineCount;
147 * @param totalLineCount The total number of executable lines by the test in the test run.
152 long totalLineCount) {
164 this.totalLineCount = totalLineCount;
165 this.hasCoverage = totalLineCount > 0;
201 boolean hasCoverage = this.totalLineCount > 0 && this.coveredLineCount >= 0;
205 testRunEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount);
239 long totalLineCount = 0
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
MethodItem.java 108 final IntObjectMap lineMap = method.getLineMap (); // TODO: expensive way to get totalLineCount
109 final int totalLineCount = lineMap.size ();
111 aggregates [TOTAL_LINE_COUNT] = totalLineCount;
114 for (int l = 0; l < totalLineCount; ++ l)
163 final IntObjectMap lineMap = method.getLineMap (); // TODO: expensive way to get totalLineCount
164 final int totalLineCount = lineMap.size ();
166 aggregates [TOTAL_LINE_COUNT] = totalLineCount;
  /test/vti/dashboard/src/main/java/com/android/vts/job/
VtsCoverageAlertJobServlet.java 99 if (status == null || status.totalLineCount <= 0 || status.coveredLineCount < 0) {
102 previousPct = ((double) status.coveredLineCount) / status.totalLineCount;
117 if (testRunEntity.totalLineCount <= 0 || testRunEntity.coveredLineCount < 0) {
120 coveragePct = ((double) testRunEntity.coveredLineCount) / testRunEntity.totalLineCount;
264 testRunEntity.totalLineCount);
  /test/vti/dashboard/src/main/java/com/android/vts/util/
DatastoreHelper.java 192 long totalLineCount = 0;
223 totalLineCount += coverageEntity.totalLineCount;
302 totalLineCount += coverageEntity.totalLineCount;
342 totalLineCount);
TestResults.java 290 long totalLineCount = testRun.totalLineCount;
354 Math.round((100 * coveredLineCount / totalLineCount) * 100f) / 100f;
364 coverageInfo = coveredLineCount + "/" + totalLineCount;
  /test/vti/dashboard/src/main/java/com/android/vts/api/
TestDataForDevServlet.java 96 private long totalLineCount;
113 private long totalLineCount;
225 testRunCoverage.totalLineCount, testRunCoverage.filePath,
272 testRun.links, testRun.coveredLineCount, testRun.totalLineCount);
  /test/vti/dashboard/src/main/webapp/js/
test_results.js 240 metadata.testRun.totalLineCount != undefined) {
244 total = metadata.testRun.totalLineCount;
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowCoverageOverviewServlet.java 129 uncoveredLines += testRunEntity.totalLineCount - testRunEntity.coveredLineCount;
ShowCoverageServlet.java 112 long total = coverageEntity.totalLineCount;
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 
  /prebuilts/devtools/tools/lib/
emma.jar 
emma_device.jar 

Completed in 670 milliseconds