Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/util/
DLineGraph.java31 private List<ProfilingPointRunEntity> profilingRuns; field in LineGraph
40 profilingRuns = new ArrayList<>(); in LineGraph()
91 return profilingRuns.size(); in size()
106 profilingRuns.add(profilingPoint); in addData()
120 ProfilingPointRunEntity profilingRun = profilingRuns.get(profilingRuns.size() - 1); in toJson()
130 long[][] lineGraphValues = new long[axisTicks.size()][profilingRuns.size()]; in toJson()
131 for (int reportIndex = 0; reportIndex < profilingRuns.size(); reportIndex++) { in toJson()
132 ProfilingPointRunEntity pt = profilingRuns.get(reportIndex); in toJson()