Lines Matching refs:match
152 commit_match = re_commit.match(line) if self.is_log else None
159 series_tag_match = re_series_tag.match(line)
160 commit_tag_match = re_commit_tag.match(line)
161 cover_match = re_cover.match(line)
162 cover_cc_match = re_cover_cc.match(line)
163 signoff_match = re_signoff.match(line)
166 tag_match = re_tag.match(line)
231 elif re_remove.match(line) and not commit_tag_match:
312 m = re_space_before_tab.match(line)
337 if not re_allowed_after_test.match(line):
370 match = re_fname.match(line)
371 if match:
373 fname = match.group(1)
377 if self.blank_count and (line == '-- ' or match):