Lines Matching refs:lines
309 lines = []
353 lines.append((file, op_line, op_addr))
369 lines.sort()
371 for file, line, addr in lines:
372 if len(lines_) == 0 or lines_[-1][0] != file or lines[-1][1] != line:
374 lines = lines_
384 return syms, sym_at, lines, line_at
483 # get the syms/lines for the dso, this is cached
484 syms, sym_at, lines, line_at = collect_syms_and_lines(
725 # build up our lines
726 lines = []
751 lines.append(header)
813 lines.append(table_entry(name, r, diff_r, ratios))
827 lines.append(table_entry('TOTAL', r, diff_r, ratios))
832 ((max(it.chain([w], (len(l[i]) for l in lines)))+1+4-1)//4)*4-1
835 range(len(lines[0])-1))]
844 widths[0], lines[0][0],
846 for w, x in zip(widths[1:], lines[0][1:-1])),
847 lines[0][-1]))
898 for name, line in zip(names, lines[1:-1]):
915 widths[0], lines[-1][0],
917 for w, x in zip(widths[1:], lines[-1][1:-1])),
918 lines[-1][-1]))
975 # skip lines not in spans?
1260 help="Show lines with samples above this threshold as a percent of "
1261 "all lines. Defaults to %s." % ','.join(str(t) for t in THRESHOLD))
1266 help="Show n additional lines of context. Defaults to 3.")