Searched refs:TablePrinter (Results 1 – 2 of 2) sorted by relevance
/external/toolchain-utils/crosperf/ |
D | results_report.py | 31 from cros_utils.tabulator import TablePrinter 266 out_type = TablePrinter.HTML 268 out_type = TablePrinter.PLAIN 270 out_type = TablePrinter.CONSOLE 272 out_type = TablePrinter.TSV 274 out_type = TablePrinter.EMAIL 278 printers = (TablePrinter(table, out_type) for table in tables)
|
/external/toolchain-utils/cros_utils/ |
D | tabulator.py | 965 class TablePrinter(object): class 1135 def GetSimpleTable(table, out_to=TablePrinter.CONSOLE): 1166 tp = TablePrinter(cell_table, out_to) 1171 def GetComplexTable(runs, labels, out_to=TablePrinter.CONSOLE): 1200 tp = TablePrinter(cell_table, out_to) 1238 t = GetComplexTable(runs, labels, TablePrinter.CONSOLE) 1240 email = GetComplexTable(runs, labels, TablePrinter.EMAIL) 1255 t = GetComplexTable(runs, labels, TablePrinter.CONSOLE) 1267 email += GetSimpleTable(simple_table, TablePrinter.HTML)
|