Home | History | Annotate | Download | only in checkers

Lines Matching refs:regex

179       pattern: The regex to match.
197 def _rfind_in_lines(regex, lines, start_position, not_found_position):
201 Returns the position where the regex ended.
203 # Put the regex in a group and proceed it with a greedy expression that
205 last_in_line_regex = r'.*(' + regex + ')'