Lines Matching refs:re
13 import re
17 DIFF_GIT_RE = re.compile(r'^diff --git a/(?P<path>.*) ')
18 REVIEWED_RE = re.compile(r'^Reviewed-by: (?P<approver>.*>)')
19 ACKED_RE = re.compile(r'^Acked-by: (?P<approver>.*>)')
20 PATCH_START = re.compile(r'^From [0-9a-f]{40}')
114 match = re.search(PATCH_START, line)
140 match = re.search(DIFF_GIT_RE, line)
146 match = re.search(REVIEWED_RE, line)
152 match = re.search(ACKED_RE, line)
178 return not not re.match(rep, path)
242 emails = sorted(set(re.findall(r'[RM]:\t(.*[\w]*<[\w\.-]+@[\w\.-]+>)',