Lines Matching refs:re
18 import re
29 PUSH_MESSAGE_RE = re.compile(r".* \(based on bleeding_edge revision r(\d+)\)$")
33 MERGE_MESSAGE_RE = re.compile(r"^.*[M|m]erged (.+)(\)| into).*$", re.M)
37 ROLLBACK_MESSAGE_RE = re.compile(r"^.*[R|r]ollback of (.+)(\)| in).*$", re.M)
40 REVIEW_LINK_RE = re.compile(r"^Review URL: (.+)$", re.M)
44 DEPS_RE = re.compile(r"""^\s*(?:["']v8_revision["']: ["']"""
47 """([^"']+)["'].*$""", re.M)
51 BLEEDING_EDGE_TAGS_RE = re.compile(
189 for (tag, revision) in re.findall(BLEEDING_EDGE_TAGS_RE, tag_text):
234 branches = filter(lambda s: re.match(r"^svn/\d+\.\d+$", s),
362 branches = filter(lambda r: re.match(r"branch-heads/\d+", r),
366 branches = map(lambda r: int(re.match(r"branch-heads/(\d+)", r).group(1)),