Searched refs:row_fmt (Results 1 – 2 of 2) sorted by relevance
/openbmc/openbmc/poky/scripts/lib/build_perf/ |
H A D | __init__.py | 8 def print_table(rows, row_fmt=None): argument 12 if not row_fmt: 13 row_fmt = ['{:{wid}} '] * len(rows[0]) 16 num_cols = len(row_fmt) 23 print(*[row_fmt[i].format(col, wid=col_widths[i]) for i, col in enumerate(row)])
|
/openbmc/openbmc/poky/scripts/ |
H A D | oe-build-perf-report | 188 row_fmt = ['{:{wid}} ', '{:<{wid}} ', '{:<{wid}}'] 196 print_table(rows, row_fmt) 208 row_fmt = ['{:8}', '{:{wid}}', '{:{wid}}', ' {:>{wid}}', ' {:{wid}} ', '{:{wid}}', 210 num_cols = len(row_fmt) 256 print_table(rows, row_fmt)
|