Lines Matching refs:lines
32 Return a sequence of lines where no line extends beyond MAX_COL
34 exclusively on depth * TABSIZE. All following lines -- these are
35 the reflowed lines generated by this function -- start at the same
43 lines = []
52 lines.append(padding + cur[:i])
53 if len(lines) == 1:
68 lines.append(padding + cur)
69 return lines
106 """Visit that emits lines"""
114 # XXX reflow long lines?
116 lines = reflow_lines(s, depth)
118 lines = [s]
119 for line in lines: