Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestResults.java58 public String[][] timeGrid; // grid of data storing timestamps to render as dates field in TestResults
236 timeGrid = new String[TIME_INFO_NAMES.length][testRuns.size() + 1]; in processReport()
238 timeGrid[i][0] = "<b>" + TIME_INFO_NAMES[i] + "</b>"; in processReport()
440 timeGrid[0][col + 1] = Long.toString(testRun.getStartTimestamp()); in processReport()
441 timeGrid[1][col + 1] = Long.toString(testRun.getEndTimestamp()); in processReport()
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_table.jsp192 var timeGrid = ${timeGrid};
198 timeGrid = timeGrid.map(function(row) {
214 data.addRows(timeGrid);
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowTableServlet.java193 request.setAttribute("timeGrid", new Gson().toJson(testResults.timeGrid)); in doGetHandler()