Home
last modified time | relevance | path

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

/external/toolchain-utils/crosperf/
Dresults_report.py31 from cros_utils.tabulator import TablePrinter
255 out_type = TablePrinter.HTML
257 out_type = TablePrinter.PLAIN
259 out_type = TablePrinter.CONSOLE
261 out_type = TablePrinter.TSV
263 out_type = TablePrinter.EMAIL
267 printers = (TablePrinter(table, out_type) for table in tables)
/external/toolchain-utils/cros_utils/
Dtabulator.py960 class TablePrinter(object): class
1130 def GetSimpleTable(table, out_to=TablePrinter.CONSOLE):
1161 tp = TablePrinter(cell_table, out_to)
1166 def GetComplexTable(runs, labels, out_to=TablePrinter.CONSOLE):
1192 tp = TablePrinter(cell_table, out_to)
1224 t = GetComplexTable(runs, labels, TablePrinter.CONSOLE)
1226 email = GetComplexTable(runs, labels, TablePrinter.EMAIL)
1230 t = GetComplexTable(runs, labels, TablePrinter.CONSOLE)
1242 email += GetSimpleTable(simple_table, TablePrinter.HTML)