Searched refs:function_name (Results 1 – 1 of 1) sorted by relevance
| /interface/sdk_c/build-tools/capi_parser/src/coreImpl/parser/ |
| D | parser.py | 53 def find_function_file(file, function_name): # 在GN文件中查找指定函数并在有函数名,获取对应sources的值 argument 56 pattern = ''.join([r'\b', re.escape(function_name), r'\b']) # '\b'确保函数名的完全匹配 82 def get_dest_dir(file, function_name): # 获取dest_dir argument 85 pattern = ''.join([r'\b', re.escape(function_name), r'\b']) # '\b'确保函数名的完全匹配 168 def create_dir(sources_dir, gn_file, function_name, link_include_file): argument 183 match_files, json_files, include_files = dire_func(gn_file, function_name) 286 function_name = StringConstant.FUNK_NAME.value # 匹配的函数名 291 link_include(directory_path, function_name, link_include_path) 293 data_total = main_entrance(directory_path, function_name, link_include_path) # 调用入口函数
|