Home | History | Annotate | Download | only in skia

Lines Matching refs:re

15 import re
86 comment_block_start_pattern = re.compile('^\s*\/\*.*$')
87 comment_block_middle_pattern = re.compile('^\s+\*.*')
88 comment_block_end_pattern = re.compile('^\s+\*\/.*$')
89 single_line_comment_pattern = re.compile('^\s*//.*$')
96 empty_line_pattern = re.compile('^\s*$')
137 if not re.search(copyright_pattern, contents):
241 email_fnmatches = re.findall('<(.*)>', authors_content)
294 if re.match(REVERT_CL_SUBJECT_PREFIX, issue_properties['subject'], re.I):
300 if issue_properties['cq_dry_run'] or re.search(
301 r'^COMMIT=false$', issue_properties['description'], re.M):
306 match = re.search(r'^TBR=(.*)$', issue_properties['description'], re.M)
369 if all_docs_changes and not re.search(
370 r'^NOTRY=true$', new_description, re.M | re.I):
379 if atleast_one_docs_change and not re.search(
380 r'^DOCS_PREVIEW=.*', new_description, re.M | re.I):
393 if not re.search(
394 r'^NOTREECHECKS=true$', new_description, re.M | re.I):
401 if not re.search(
402 r'^NOTRY=true$', new_description, re.M | re.I):
419 if re.search('#%s' % hashtag, new_description, re.M | re.I):
430 if not re.search(
431 r'^%s$' % mapped_text, new_description, re.M | re.I):
451 match = re.search(
452 r'^%s=(.*)$' % keyword, description, re.M | re.I)