Lines Matching full:path
82 help="The path collection of dependent so has been divided by':'")
94 help="the root path for qemu-aarch64 or qemu-arm")
129 ark_frontend_binary = os.path.join(ARK_FRONTEND_BINARY_LIST[0])
131 ark_frontend_binary = os.path.join(args.ark_frontend_binary)
133 ts2abc_build_dir = os.path.join(os.path.dirname(
134 os.path.realpath(ark_frontend_binary)), "..")
136 if not os.path.exists(os.path.join(ts2abc_build_dir, "package.json")) and \
137 not os.path.exists(os.path.join(ts2abc_build_dir, "..", "package.json")):
140 if os.path.exists(os.path.join(ts2abc_build_dir, "..", "package.json")) and \
141 not os.path.exists(os.path.join(ts2abc_build_dir, "package.json")):
142 ts2abc_build_dir = os.path.join(ts2abc_build_dir, "..")
144 deps_dir = os.path.join(ts2abc_build_dir, "deps")
147 …proc = subprocess.Popen("cp %s %s" % (OHOS_TYPESCRIPT_TGZ_PATH, os.path.join(deps_dir, OHOS_TYPESC…
150 …subprocess.getstatusoutput("cp %s %s" % (OHOS_TYPESCRIPT_TGZ_PATH, os.path.join(deps_dir, OHOS_TYP…
180 def collect_files(path): argument
181 if os.path.isfile(path):
182 yield path
185 if not os.path.isdir(path):
186 raise ValueError(f'Not found: "{path}"')
188 for root, _, file_names in os.walk(path):
193 yield os.path.join(root, file_name)
201 fpath, fname = os.path.split(file[idx:])
213 if not os.path.isdir(os.path.join(DATA_DIR, '.git')):
217 if not os.path.isdir(os.path.join(ESHOST_DIR, '.git')):
224 if not os.path.isdir(os.path.join(HARNESS_DIR, '.git')):
236 remove_file(os.path.join(ESHOST_DIR, "lib/agents/panda.js"))
237 remove_file(os.path.join(ESHOST_DIR, "runtimes/panda.js"))
267 self.out_dir = os.path.join(BASE_OUT_DIR, "test_es51")
269 self.out_dir = os.path.join(BASE_OUT_DIR, "test_es2015")
271 self.out_dir = os.path.join(BASE_OUT_DIR, "test_intl")
273 self.out_dir = os.path.join(BASE_OUT_DIR, "test_es2021")
275 self.out_dir = os.path.join(BASE_OUT_DIR, "test_CI")
277 self.out_dir = os.path.join(BASE_OUT_DIR, "test")
294 self.args.dir = os.path.join(DATA_DIR, "test")
297 dstdir = os.path.join(DATA_DIR, "test")
304 srcdir = os.path.join(DATA_DIR, "test", file)
306 dstdir = os.path.join(TEST_ES5_DIR, file)
308 dstdir = os.path.join(TEST_ES2015_DIR, file)
310 dstdir = os.path.join(TEST_INTL_DIR, file)
312 dstdir = os.path.join(TEST_ES2021_DIR, file)
314 dstdir = os.path.join(TEST_CI_DIR, file)
324 origin_dir = os.path.join(DATA_DIR, "test/")
388 path = os.path.split(file)[0]
389 path = os.path.join(test_dir, path)
390 mkdir(path)
465 execute_args = os.path.join(args.dir, "**", "*.js")
474 host_type = os.path.split(args.engine.strip())[1]