Lines Matching refs:match
114 match = re.search(PATCH_START, line)
115 if match:
140 match = re.search(DIFF_GIT_RE, line)
141 if match:
142 p = match.group('path')
146 match = re.search(REVIEWED_RE, line)
147 if match:
148 a = match.group('approver')
152 match = re.search(ACKED_RE, line)
153 if match:
154 a = match.group('approver')
178 return not not re.match(rep, path)