Home
last modified time | relevance | path

Searched refs:profilingRun (Results 1 – 6 of 6) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DProfilingPointSummaryEntity.java216 public void update(ProfilingPointRunEntity profilingRun) { in update() argument
217 if (profilingRun.getLabels() != null in update()
218 && profilingRun.getLabels().size() == profilingRun.getValues().size()) { in update()
219 for (int i = 0; i < profilingRun.getLabels().size(); i++) { in update()
220 String label = profilingRun.getLabels().get(i); in update()
223 profilingRun.getVtsProfilingRegressionMode( in update()
224 profilingRun.getRegressionMode()); in update()
229 summary.updateStats(profilingRun.getValues().get(i)); in update()
232 this.labels.addAll(profilingRun.getLabels()); in update()
234 for (long value : profilingRun.getValues()) { in update()
DProfilingPointRunEntity.java235 Entity profilingRun = new Entity(this.key); in toEntity() local
236 profilingRun.setUnindexedProperty(TYPE, this.type); in toEntity()
237 profilingRun.setUnindexedProperty(REGRESSION_MODE, this.regressionMode); in toEntity()
239 profilingRun.setUnindexedProperty(LABELS, this.labels); in toEntity()
241 profilingRun.setUnindexedProperty(VALUES, this.values); in toEntity()
242 profilingRun.setUnindexedProperty(X_LABEL, this.xLabel); in toEntity()
243 profilingRun.setUnindexedProperty(Y_LABEL, this.yLabel); in toEntity()
245 profilingRun.setUnindexedProperty(OPTIONS, this.options); in toEntity()
248 return profilingRun; in toEntity()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DLineGraph.java120 ProfilingPointRunEntity profilingRun = profilingRuns.get(profilingRuns.size() - 1); in toJson() local
124 for (int i = 0; i < profilingRun.getLabels().size(); i++) { in toJson()
125 String label = profilingRun.getLabels().get(i); in toJson()
DPerformanceSummary.java67 public void addData(ProfilingPointEntity profilingPoint, Entity profilingRun) { in addData() argument
69 ProfilingPointSummaryEntity.fromEntity(profilingRun); in addData()
DPerformanceUtil.java271 ProfilingPointRunEntity profilingRun, Set<String> optionKeys) { in getOptionAlias() argument
273 if (profilingRun.getOptions() != null) { in getOptionAlias()
274 name = getOptionAlias(profilingRun.getOptions(), optionKeys); in getOptionAlias()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowGraphServlet.java92 Entity profilingRun, String idString, Map<String, Graph> graphMap) { in processProfilingRun() argument
93 ProfilingPointRunEntity pt = ProfilingPointRunEntity.fromEntity(profilingRun); in processProfilingRun()