Home | History | Annotate | Download | only in checkers

Lines Matching refs:start_position

197 def _rfind_in_lines(regex, lines, start_position, not_found_position):
206 current_row = start_position.row
209 current_line = lines[start_position.row][:start_position.column]
397 def __init__(self, lines, start_position, end_position):
402 start_position: offset within lines of where to start the single line.
406 trimmed_lines = lines[start_position.row:end_position.row + 1]
412 trimmed_lines[0] = trimmed_lines[0][start_position.column:]
421 self._starting_row = start_position.row
479 def parameter_list(elided_lines, start_position, end_position):
482 start_position = Position(row=start_position.row, column=start_position.column + 1)
484 single_line_view = SingleLineView(elided_lines, start_position, end_position)