Home | History | Annotate | Download | only in skia

Lines Matching refs:re

16 import re
105 comment_block_start_pattern = re.compile('^\s*\/\*.*$')
106 comment_block_middle_pattern = re.compile('^\s+\*.*')
107 comment_block_end_pattern = re.compile('^\s+\*\/.*$')
108 single_line_comment_pattern = re.compile('^\s*//.*$')
115 empty_line_pattern = re.compile('^\s*$')
156 if not re.search(copyright_pattern, contents):
260 email_fnmatches = re.findall('<(.*)>', authors_content)
306 if re.match(REVERT_CL_SUBJECT_PREFIX, issue_properties['subject'], re.I):
315 match = re.search(r'^TBR=(.*)$', issue_properties['description'], re.M)
385 if not re.search(r'^GOLD_TRYBOT_URL=', new_description, re.M | re.I):
395 if all_docs_changes and not re.search(
396 r'^NOTRY=true$', new_description, re.M | re.I):
405 if atleast_one_docs_change and not re.search(
406 r'^DOCS_PREVIEW=.*', new_description, re.M | re.I):
419 if not re.search(
420 r'^NOTREECHECKS=true$', new_description, re.M | re.I):
427 if not re.search(
428 r'^NOTRY=true$', new_description, re.M | re.I):
434 if not re.search(
435 r'^NOPRESUBMIT=true$', new_description, re.M | re.I):
473 match = re.search(r'^CQ_EXTRA_TRYBOTS=(.*)$', description, re.M | re.I)