Home
last modified time | relevance | path

Searched refs:src_path (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/runtime_core/static_core/scripts/code_style/
Ddoxygen_style_check.py68 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_num)
[all …]
Dcode_style_check.py42 def run_clang_format(src_path, panda_dir, reformat, msg): argument
47 cmd += [src_path]
56 print("Note: missed output for ", src_path)
Dclang_tidy_rename.py48 def run_clang_tidy(src_path, panda_dir, build_dir, fix_dir, compile_args, msg, clang_rules_autofix): argument
49 fname_prefix = os.path.basename(src_path) + '_'
59 cmd += [src_path]
74 print("Note: missed output for ", src_path)
/arkcompiler/runtime_core/scripts/
Dinstall-deps-qemu93 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/
Dinstall-deps-qemu93 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/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/
Dutil_hermes.py76 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/ets_frontend/es2panda/test/
Dtest262util.py76 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/runtime_core/static_core/scripts/clang-tidy/
Dclang_tidy_check.py210 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/
Dutil_test262.py110 …def prepare_tests(self, src_path: str, dest_path: str, harness_path: str, test262_path: str) -> No…
111 glob_expression = os.path.join(src_path, "**/*.js")
121 dest_file = src_file.replace(src_path, dest_path)
/arkcompiler/ets_runtime/test/regresstest/
Drun_regress_test.py255 src_path: str # full path to the source test
334 report = TestReport(src_path=test, test_id=test_id)
443 test_report.src_path
470 if test_report.src_path == RegressTestConfig.REGRESS_TEST_TOOL_DIR:
473 out_file = change_extension(test_report.src_path, '.out')
752 if test_report.src_path.endswith(RegressTestConfig.TEST_TOOL_FILE_JS_NAME):
766 set_test_environ(test_report.src_path)
787 expect_output_str = read_expect_file(expect_file, test_report.src_path)