Lines Matching refs:match
397 if input_api.re.match(item, local_path):
456 if pattern.match(line):
545 if pattern.match(line):
575 if c_system_include_pattern.match(line):
580 elif cpp_system_include_pattern.match(line):
587 elif custom_include_pattern.match(line):
615 # Match the final or penultimate token if it is xxxtest so we can ignore it
642 if system_include_pattern.match(line):
647 match = custom_include_pattern.match(line)
648 if match:
649 match_dict = match.groupdict()
664 if uncheckable_includes_pattern.match(line):
666 if if_pattern.match(line):
669 elif ((system_include_pattern.match(line) or
670 custom_include_pattern.match(line)) and
671 not excluded_include_pattern.match(line)):
710 if pattern.match(line):
767 if pattern.match(f.LocalPath()):
793 m = pattern.match(changed_line)
1097 input_api.re.match(r'[^#]+\s+\<(.+?)\>\s*$', line)
1146 for match in os_macro.finditer(line):
1147 if not match.group(1) in _VALID_OS_MACROS:
1148 good = _DidYouMeanOSMacro(match.group(1))
1152 match.group(1),
1236 # Match things like path/aura/file.cc and path/file_aura.cc.