Home | History | Annotate | Download | only in site_utils

Lines Matching refs:re

19 import re
134 match = re.search(r'^(.+){%s}=(.+)$' % keyword, line)
165 regex = re.compile(
167 chrome_regex = re.compile(r'^supplied_[cC]hrome|^chrome$')
214 info_regex = re.compile(r'^(%s)\s*[|=]\s*(.*)' %
248 matches = re.findall(match_filter, status_raw, re.MULTILINE)
275 match = re.match(r'experimental=(.+)', line)
331 failure = re.search(r'%s' % failure_tags, status_raw)
332 warning = re.search(r'%s' % warning_tag, status_raw) and not failure
333 good = (re.search(r'GOOD.+completed successfully', status_raw) and
341 match = re.search(r'^\t+(%s|%s)\t(.+)' % (failure_tags,
343 status_raw, re.MULTILINE)
348 reason = re.escape(reason)