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

  /test/vti/dashboard/src/main/java/com/android/vts/entity/
ProfilingPointRunEntity.java 94 Entity profilingRun = new Entity(this.key);
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);
107 return profilingRun;
ProfilingPointSummaryEntity.java 147 * @param profilingRun The profiling point run entity object containing profiling data.
149 public void update(ProfilingPointRunEntity profilingRun) {
150 if (profilingRun.labels != null
151 && profilingRun.labels.size() == profilingRun.values.size()) {
152 for (int i = 0; i < profilingRun.labels.size(); i++) {
153 String label = profilingRun.labels.get(i);
155 StatSummary summary = new StatSummary(label, profilingRun.regressionMode);
159 summary.updateStats(profilingRun.values.get(i));
162 this.labels.addAll(profilingRun.labels)
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/util/
LineGraph.java 120 ProfilingPointRunEntity profilingRun = profilingRuns.get(profilingRuns.size() - 1);
124 for (int i = 0; i < profilingRun.labels.size(); i++) {
125 String label = profilingRun.labels.get(i);

Completed in 110 milliseconds