Lines Matching refs:lines
1782 lines = text.split("\n")
1784 win_height = min(len(lines) + 4, screen_height)
1785 win_width = min(max(len(line) for line in lines) + 4, screen_width)
2207 lines = _info_str(node).split("\n")
2213 _draw_info_dialog(node, lines, scroll, top_line_win, text_win,
2224 if scroll < _max_scroll(lines, text_win):
2228 scroll = min(scroll + _PG_JUMP, _max_scroll(lines, text_win))
2234 scroll = _max_scroll(lines, text_win)
2292 def _draw_info_dialog(node, lines, scroll, top_line_win, text_win, argument
2306 for i, line in enumerate(lines[scroll:scroll + text_win_height]):
2319 if scroll < _max_scroll(lines, text_win):