Home | History | Annotate | Download | only in release

Lines Matching refs:re

18 import re
29 PUSH_MSG_SVN_RE = re.compile(r".* \(based on bleeding_edge revision r(\d+)\)$")
30 PUSH_MSG_GIT_RE = re.compile(r".* \(based on ([a-fA-F0-9]+)\)$")
34 MERGE_MESSAGE_RE = re.compile(r"^.*[M|m]erged (.+)(\)| into).*$", re.M)
36 CHERRY_PICK_TITLE_GIT_RE = re.compile(r"^.* \(cherry\-pick\)\.?$")
39 MERGE_MESSAGE_GIT_RE = re.compile(r"^Merged ([a-fA-F0-9]+)\.?$")
43 ROLLBACK_MESSAGE_RE = re.compile(r"^.*[R|r]ollback of (.+)(\)| in).*$", re.M)
46 ROLLBACK_MESSAGE_GIT_RE = re.compile(r"^Rollback of ([a-fA-F0-9]+)\.?$")
49 REVIEW_LINK_RE = re.compile(r"^Review URL: (.+)$", re.M)
53 DEPS_RE = re.compile(r"""^\s*(?:["']v8_revision["']: ["']"""
56 """([^"']+)["'].*$""", re.M)
60 BLEEDING_EDGE_TAGS_RE = re.compile(
395 branches = filter(lambda r: re.match(r"branch-heads/\d+", r),
399 branches = map(lambda r: int(re.match(r"branch-heads/(\d+)", r).group(1)),