Lines Matching refs:match
96 if designated_re.match(line):
98 return designated_re.match(line).group(1)
100 is_package = package.match(line) is not None
123 if VERSION_SUFFIX_RE.match(s):
124 return VERSION_SUFFIX_RE.match(s).group(1)
691 libname_groups = deps_libname.match(lib)
718 libname_groups = build_deps_libname.match(lib)
912 if cargo_test_list_start_re.match(line):
913 current_test_name = cargo_test_list_start_re.match(line).group(1)
914 elif current_test_name and cargo_test_list_end_re.match(line):
915 match = cargo_test_list_end_re.match(line)
916 if int(match.group(1)) + int(match.group(2)) == 0:
920 if compiling_pat.match(line):
921 self.add_deps_libname_map(compiling_pat.match(line).group(1))
956 if rustc_re.match(line):
957 args_line = rustc_re.match(line).group(1)
960 elif rustc_line or rustc_vv_re.match(line):
963 elif previous_warning and warning_output_file_re.match(line):
964 file_path = warning_output_file_re.match(line).group(1)
971 elif cargo_to_gn_running_re.match(line):
1015 if rustc_vv_cmd_args.match(new_rustc_line):
1016 args = rustc_vv_cmd_args.match(new_rustc_line).group(1)