Searched refs:search (Results 1 - 14 of 14) sorted by relevance
/build/tools/component_tools/ |
H A D | component_node.py | 87 module_name = module_pattern.search(ohos_string).group() 93 if subsystem_pattern.search(ohos_string) is not None: 94 subsystem_name = subsystem_pattern.search(ohos_string).group() 97 if part_pattern.search(ohos_string) is not None: 98 part_name = part_pattern.search(ohos_string).group() 101 deps_raw = deps_pattern.search(ohos_string).group() if deps_pattern.search(ohos_string) is not None \ 110 external_deps_raw = external_deps_pattern.search(ohos_string).group() if external_deps_pattern.search(ohos_string) is not None \
|
/build/test/example/ |
H A D | performance_test.py | 368 gn_res = re.search(self.gn_end_flag, self.gn_end_li[0]) 485 if re.search(self.root_dir_flag, output): 486 self.root_dir = re.search(self.root_dir_flag, output).group(1) 488 if re.search(self.gn_dir_flag, output): 489 self.gn_dir = re.search(self.gn_dir_flag, output).group(1) 492 if re.search(value.get("start_pattern"), output): 494 if re.search(value.get("end_pattern"), output): 497 if re.search(self.gn_exec_flag, output): 499 elif re.search(self.gn_script_flag, output): 501 elif re.search(sel [all...] |
H A D | test_build_option.py | 130 re_match = re.search(value["pattern"], line)
|
/build/build_scripts/ |
H A D | build.py | 25 def search(findir: str, target: str) -> str or bool: function 49 python_dir = search(python_base_dir, 'python3')
|
/build/hb/util/ |
H A D | device_util.py | 65 return re.search(kernel_pattern, data) and\ 66 re.search(version_pattern, data)
|
H A D | monitor.py | 88 match = re.search(r'\d+', line)
|
H A D | log_util.py | 108 match = pattern.search(data)
|
/build/tools/module_dependence/ |
H A D | dependence_analysis.py | 41 _filename_snippet = re.search(r'(.*).json', _filename).group(1)
|
/build/tools/component_tools/static_check/ |
H A D | csct_online_prehandle.py | 75 if re.search(key, line) is not None:
|
/build/config/linux/ |
H A D | pkg-config.py | 92 if regexp.search(flag) is not None:
|
/build/ohos/sdk/ |
H A D | parse_sdk_description.py | 120 match = re.search(r"(.*?):(.*?)", label)
|
/build/scripts/util/ |
H A D | build_utils.py | 211 if not re_filter.search(line)) 641 match = r.search(arg)
|
/build/config/components/init/seccomp/scripts/ |
H A D | generate_code_from_policy.py | 175 s = re.search(r"libsyscall_to_nr_([^/]+)", file_name)
|
/build/scripts/ |
H A D | cargo2gn.py | 393 authors_section = authors_re.search(infile.read()) 818 # set up search PATH for cargo to find the correct rustc
|
Completed in 9 milliseconds