Searched refs:src_path (Results 1 - 11 of 11) sorted by relevance
| /arkcompiler/runtime_core/static_core/scripts/code_style/ |
| H A D | doxygen_style_check.py | 68 def check_keywords(src_path: str, splitted_lines: list, line_num: int) -> bool: 75 err_msg = "%s:%s" % (src_path, line_num) 83 def check_javadoc(src_path: str, strings: list) -> bool: 85 with open(src_path, 'r') as f: 95 err_msg = "%s:%s" % (src_path, line_num) 101 err_msg = "%s:%s" % (src_path, line_num) 105 found_wrong_keyword_sign |= not check_keywords(src_path, string.splitlines(), line_num) 111 def check_additional_slashes(src_path: str, strings: list) -> bool: 113 with open(src_path, 'r') as f: 127 err_msg = "%s:%s" % (src_path, line_nu [all...] |
| H A D | code_style_check.py | 42 def run_clang_format(src_path, panda_dir, reformat, msg): 47 cmd += [src_path] 56 print("Note: missed output for ", src_path)
|
| H A D | clang_tidy_rename.py | 48 def run_clang_tidy(src_path, panda_dir, build_dir, fix_dir, compile_args, msg, clang_rules_autofix): 49 fname_prefix = os.path.basename(src_path) + '_' 59 cmd += [src_path] 74 print("Note: missed output for ", src_path)
|
| /arkcompiler/runtime_core/scripts/ |
| H A D | install-deps-qemu | 93 local src_path="$prefix/src" 94 local arch_full="$src_path/$arch_name" 103 mkdir -p "$src_path" 106 tar xfJ "$arch_full" -C "$src_path" 108 pushd "$src_path/$qemu_name"
|
| /arkcompiler/runtime_core/static_core/scripts/ |
| H A D | install-deps-qemu | 93 local src_path="$prefix/src" 94 local arch_full="$src_path/$arch_name" 109 mkdir -p "$src_path" 112 tar xfJ "$arch_full" -C "$src_path" 114 pushd "$src_path/$qemu_name"
|
| /arkcompiler/ets_frontend/ets2panda/public/headers_parser/ |
| H A D | main.py | 41 def parse_file(src_path: str, dest_path: str) -> None: 46 parsing_log("Parsing file: " + src_path) 48 with open(src_path, "r", encoding="utf-8") as file: 68 add_to_custom_yamls("pathsToHeaders", "paths", src_path) 73 error_log("Error while parsing '" + src_path + "'\n") 75 info_log("Error! Can't parse '" + src_path + "'")
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/ |
| H A D | util_hermes.py | 76 def process_copy(self, src_path: str, dst_path: str) -> None: 79 glob_expression = os.path.join(src_path, "**/*.js") 83 dest_file = src_file.replace(src_path, dst_path)
|
| /arkcompiler/runtime_core/static_core/scripts/clang-tidy/ |
| H A D | clang_tidy_check.py | 210 def run_clang_tidy(src_path: str, panda_dir: str, build_dir: str, compile_args: str) -> bool: 220 cmd += [src_path] 229 print("Note: missed output for ", src_path) 234 print("Note: bad output for ", src_path)
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/ |
| H A D | util_test262.py | 110 def prepare_tests(self, src_path: str, dest_path: str, harness_path: str, test262_path: str) -> None: 111 glob_expression = os.path.join(src_path, "**/*.js") 121 dest_file = src_file.replace(src_path, dest_path)
|
| /arkcompiler/ets_frontend/es2panda/test/ |
| H A D | test262util.py | 76 src_path = path.join(test262_path, 'test') 78 glob_expression = path.join(src_path, "**/*.js") 88 dest_file = src_file.replace(src_path, dest_path)
|
| /arkcompiler/ets_runtime/test/regresstest/ |
| H A D | run_regress_test.py | 268 src_path: str # full path to the source test 347 report = TestReport(src_path=test, test_id=test_id) 456 test_report.src_path 461 f"{Utils.get_file_only_name(test_report.src_path)}-filesInfo.txt")) 483 if test_report.src_path == RegressTestConfig.REGRESS_TEST_TOOL_DIR: 486 out_file = change_extension(test_report.src_path, '.out') 786 expect_output_str = read_expect_file(expect_file, test_report.src_path) 787 test_case_file = Utils.read_file_as_str(test_report.src_path) 816 if test_report.src_path.endswith(RegressTestConfig.TEST_TOOL_FILE_JS_NAME): 830 set_test_environ(test_report.src_path) [all...] |
Completed in 6 milliseconds