Lines Matching refs:lines
1970 lines = text.split("\n")
1972 win_height = min(len(lines) + 4, screen_height)
1973 win_width = min(max(len(line) for line in lines) + 4, screen_width)
2393 lines = _info_str(node).split("\n")
2399 _draw_info_dialog(node, lines, scroll, top_line_win, text_win,
2410 if scroll < _max_scroll(lines, text_win):
2414 scroll = min(scroll + _PG_JUMP, _max_scroll(lines, text_win))
2420 scroll = _max_scroll(lines, text_win)
2478 def _draw_info_dialog(node, lines, scroll, top_line_win, text_win, argument
2491 for i, line in enumerate(lines[scroll:scroll + text_win_height]):
2503 if scroll < _max_scroll(lines, text_win):