HomeSort by relevance Sort by last modified time
    Searched defs:setUnindexedProperty (Results 1 - 10 of 10) sorted by null

  /test/vti/dashboard/src/main/java/com/android/vts/entity/
CoverageEntity.java 80 coverageEntity.setUnindexedProperty(COVERED_LINE_COUNT, coveredLineCount);
81 coverageEntity.setUnindexedProperty(TOTAL_LINE_COUNT, totalLineCount);
83 coverageEntity.setUnindexedProperty(PROJECT_NAME, projectName);
84 coverageEntity.setUnindexedProperty(PROJECT_VERSION, projectVersion);
86 coverageEntity.setUnindexedProperty(LINE_COVERAGE, lineCoverage);
DeviceInfoEntity.java 78 deviceEntity.setUnindexedProperty(ABI_BITNESS, this.abiBitness.toLowerCase());
79 deviceEntity.setUnindexedProperty(ABI_NAME, this.abiName.toLowerCase());
ProfilingPointEntity.java 93 profilingPoint.setUnindexedProperty(TYPE, this.type.getNumber());
94 profilingPoint.setUnindexedProperty(REGRESSION_MODE, this.regressionMode.getNumber());
95 profilingPoint.setUnindexedProperty(X_LABEL, this.xLabel);
96 profilingPoint.setUnindexedProperty(Y_LABEL, this.yLabel);
ProfilingPointRunEntity.java 95 profilingRun.setUnindexedProperty(TYPE, this.type.getNumber());
96 profilingRun.setUnindexedProperty(REGRESSION_MODE, this.regressionMode.getNumber());
98 profilingRun.setUnindexedProperty(LABELS, this.labels);
100 profilingRun.setUnindexedProperty(VALUES, this.values);
101 profilingRun.setUnindexedProperty(X_LABEL, this.xLabel);
102 profilingRun.setUnindexedProperty(Y_LABEL, this.yLabel);
104 profilingRun.setUnindexedProperty(OPTIONS, this.options);
TestPlanRunEntity.java 92 planRun.setUnindexedProperty(TEST_RUNS, this.testRuns);
TestStatusEntity.java 117 testEntity.setUnindexedProperty(FAILING_IDS, failingTestcaseIds);
118 testEntity.setUnindexedProperty(FAILING_OFFSETS, failingTestcaseOffsets);
TestAcknowledgmentEntity.java 140 ackEntity.setUnindexedProperty(BRANCHES, new ArrayList<>(this.branches));
143 ackEntity.setUnindexedProperty(DEVICES, new ArrayList<>(this.devices));
146 ackEntity.setUnindexedProperty(TEST_CASE_NAMES, new ArrayList<>(this.testCaseNames));
148 if (this.note != null) ackEntity.setUnindexedProperty(NOTE, new Text(this.note));
TestCaseRunEntity.java 142 testCaseRunEntity.setUnindexedProperty(TEST_CASE_NAMES, testCaseNames);
143 testCaseRunEntity.setUnindexedProperty(RESULTS, results);
146 testCaseRunEntity.setUnindexedProperty(SYSTRACE_URL, this.systraceUrl);
TestRunEntity.java 195 testRunEntity.setUnindexedProperty(END_TIMESTAMP, this.endTimestamp);
200 testRunEntity.setUnindexedProperty(TEST_CASE_IDS, this.testCaseIds);
208 testRunEntity.setUnindexedProperty(LOG_LINKS, this.links);
ProfilingPointSummaryEntity.java 173 profilingSummary.setUnindexedProperty(MEAN, this.globalStats.getMean());
174 profilingSummary.setUnindexedProperty(SUMSQ, this.globalStats.getSumSq());
175 profilingSummary.setUnindexedProperty(MIN, this.globalStats.getMin());
176 profilingSummary.setUnindexedProperty(MAX, this.globalStats.getMax());
177 profilingSummary.setUnindexedProperty(COUNT, this.globalStats.getCount());
197 profilingSummary.setUnindexedProperty(LABELS, this.labels);
198 profilingSummary.setUnindexedProperty(LABEL_MEANS, labelMeans);
199 profilingSummary.setUnindexedProperty(LABEL_SUMSQS, labelSumsqs);
200 profilingSummary.setUnindexedProperty(LABEL_MINS, labelMins);
201 profilingSummary.setUnindexedProperty(LABEL_MAXES, labelMaxes)
    [all...]

Completed in 519 milliseconds