Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestResults.java57 public String[] headerRow; // row to display above the test results table field in TestResults
228 headerRow = new String[testRuns.size() + 1]; in processReport()
229 headerRow[0] = StringUtils.join(HEADER_NAMES, "<br>"); in processReport()
412 headerRow[col + 1] = in processReport()
/test/vti/dashboard/src/main/webapp/js/
Dtest_acknowledgments.js391 var headerRow = $('<div></div>');
421 var headerCol = $('<div class="col s12 section-header-col"></div>').appendTo(headerRow);
427 headerRow.appendTo(self);
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_table.jsp184 headerRow = ${headerRow};
185 headerRow.forEach(function(d, i) {
221 headerRow : 'table-header',
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowTableServlet.java192 request.setAttribute("headerRow", new Gson().toJson(testResults.headerRow)); in doGetHandler()