Home
last modified time | relevance | path

Searched refs:parser_include_ast (Results 1 – 4 of 4) sorted by relevance

/interface/sdk_c/build-tools/capi_parser/src/coreImpl/diff/
Ddiff.py16 from coreImpl.parser.parser import parser_include_ast
45 parser_data = parser_include_ast(root_path, [file_path])
Ddiff_file.py21 from coreImpl.parser.parser import parser_include_ast
122 result_map = parse_file_result(parser_include_ast(global_new_dir, [diff_file_path], flag=1))
131 result_map = parse_file_result(parser_include_ast(global_old_dir, [diff_file_path], flag=0))
153 …old_file_result_map = parse_file_result(parser_include_ast(global_old_dir, [old_target_file], flag…
154 …new_file_result_map = parse_file_result(parser_include_ast(global_new_dir, [new_target_file], flag…
170 result_map = parse_file_result(parser_include_ast(global_old_dir, [file_path], flag=0))
184 result_map = parse_file_result(parser_include_ast(global_new_dir, [file_path], flag=1))
/interface/sdk_c/build-tools/capi_parser/src/coreImpl/check/
Dcheck.py21 from coreImpl.parser.parser import parser_include_ast
92 python_obj = parser_include_ast(root_path, [file])
/interface/sdk_c/build-tools/capi_parser/src/coreImpl/parser/
Dparser.py297 def parser_include_ast(gn_file_path, include_path, flag=-1): # 对于单独的.h解析接口 function