Lines Matching refs:rows
42 rows = []
56 rows.append((f"{label:>12}", f"{family_stats[key]:>12}", f"{100*family_stats[key]/total:0.1f}%"))
57 emit_table(("Kind", "Count", "Ratio"), rows)
62 rows = []
67 rows.append((label, val, f"{100*val/total_attempts:0.1f}%"))
68 emit_table(("", "Count:", "Ratio:"), rows)
79 rows = []
83 rows.append((kind_to_text(index, defines, name), value, f"{100*value/total_failures:0.1f}%"))
84 emit_table(("Failure kind", "Count:", "Ratio:"), rows)
187 def emit_table(header, rows):
200 for row in rows:
202 raise ValueError("Wrong number of elements in row '" + str(rows) + "'")
218 rows = []
225 rows.append((name, count, f"{100*count/total:0.1f}%",
229 rows
257 rows = []
260 rows.append((key, value, f"{100*value/total:0.1f}%"))
263 rows.append((key, value, f"{100*value/total:0.1f}%"))
264 emit_table(("", "Count:", "Ratio:"), rows)
269 rows = []
278 rows.append((label, value, materialize))
279 emit_table(("", "Count:", "Ratio:"), rows)
301 rows = []
305 rows.append((opname[i] + " " + opname[j], count, f"{100*count/total:0.1f}%",
308 rows