Lines Matching refs:re
36 import re
77 return re.sub(rexp, replacement, text, flags=re.MULTILINE)
82 line = re.sub(r"\t", r" ", line.strip())
108 if not re.search(log_exp, body, flags=re.I | re.M):
119 raw_title = re.sub(r"(\.|\?|!)$", "", title)
140 ref = re.match(r"^BUG[ \t]*=[ \t]*(.+)$", text.strip())
145 match = re.match(r"^v8:(\d+)$", bug)
148 match = re.match(r"^(?:chromium:)?(\d+)$", bug)
396 if re.match(r"\*?\s*%s$" % re.escape(name), line):
445 match = re.match(r"^#define %s\s+(\d*)" % def_name, line)
510 line = re.sub("\d+$", self[prefix + "major"], line)
512 line = re.sub("\d+$", self[prefix + "minor"], line)
514 line = re.sub("\d+$", self[prefix + "build"], line)
516 line = re.sub("\d+$", self[prefix + "patch"], line)
573 match = re.match(r"document\.write\('(\w+)'\)", self.ReadURL(url))