Home
last modified time | relevance | path

Searched full:join (Results 1 - 25 of 7131) sorted by relevance

12345678910>>...286

/build/hb/resources/
H A Dglobal_var.py24 CURRENT_BUILD_DIR = os.path.join(CURRENT_OHOS_ROOT, 'build')
25 CURRENT_HB_DIR = os.path.join(CURRENT_BUILD_DIR, 'hb')
26 DEFAULT_CCACHE_DIR = os.path.join(CURRENT_OHOS_ROOT, '.ccache')
28 ARGS_DIR = os.path.join(CURRENT_HB_DIR, 'resources/args')
30 DEFAULT_BUILD_ARGS = os.path.join(
32 DEFAULT_SET_ARGS = os.path.join(
34 DEFAULT_CLEAN_ARGS = os.path.join(
36 DEFAULT_ENV_ARGS = os.path.join(
38 DEFAULT_TOOL_ARGS = os.path.join(
41 DEFAULT_INDEP_BUILD_ARGS = os.path.join(
[all...]
/third_party/skia/platform_tools/android/apps/skottie/
H A Dskottie_metric.sql12 INNER JOIN thread_track ON (thread_track.id = slice.track_id)
23 INNER JOIN thread_track ON (thread_track.id = slice.track_id)
24 INNER JOIN thread ON (thread.utid = thread_track.utid)
37 INNER JOIN thread_track ON (thread_track.id = slice.track_id)
38 INNER JOIN thread ON (thread.utid = thread_track.utid)
39 INNER JOIN test_start_ts ON (test_start_ts.process_upid = thread.upid)
51 INNER JOIN thread_track ON (thread_track.id = slice.track_id)
52 INNER JOIN thread ON (thread.utid = thread_track.utid)
53 INNER JOIN test_start_ts ON (slice.ts >= test_start_ts.test_start AND slice.ts <= test_start_ts.test_end)
66 INNER JOIN thread_trac
[all...]
/build/
H A Dprebuilts_config.py49 sha_sums256_path = os.path.join(os.path.dirname(check_url), sha_sums256)
105 with os.fdopen(os.open(os.path.join(home_path, '.npmrc'), os.O_WRONLY | os.O_CREAT, mode=0o640), 'w') as f:
110 with os.fdopen(os.open(os.path.join(download_dir, 'package.json'), os.O_WRONLY | os.O_CREAT, mode=0o640),
114 npm_path = os.path.join(code_path, "prebuilts/build-tools/common/nodejs/current/bin/npm")
115 node_bin_path = os.path.join(code_path, "prebuilts/build-tools/common/nodejs/current/bin")
120 symlink_src2dest(os.path.join(download_dir, 'node_modules'), symlink_dir)
128 package_path = os.path.join(code_path, npm_download.get('package_path'))
129 package_lock_path = os.path.join(code_path, npm_download.get('package_lock_path'))
132 download_dir = os.path.join(home_path, npm_download.get('download_dir'), hash_value)
135 symlink = os.path.join(code_pat
[all...]
/third_party/node/test/parallel/
H A Dtest-fs-cp.mjs18 import { join } from 'path';
28 return join(tmpdir.path, `copy_${++dirc}`);
68 mkdirSync(join(src, 'a', 'b'), mustNotMutateObjectDeep({ recursive: true }));
69 writeFileSync(join(src, 'README.md'), 'hello world', 'utf8');
72 const initialStat = lstatSync(join(dest, 'README.md'));
76 const finalStat = lstatSync(join(dest, 'README.md'));
85 writeFileSync(join(dest, 'README.md'), '# Goodbye', 'utf8');
88 const content = readFileSync(join(dest, 'README.md'), 'utf8');
97 const destFile = join(dest, 'a/b/README2.md');
109 writeFileSync(join(sr
[all...]
H A Dtest-fs-rm.js17 path.join(tmpdir.path, `${name}-${count++}`);
30 fs.writeFileSync(path.join(dirname, 'text.txt'), 'hello', 'utf8');
35 fs.writeFileSync(path.join(dirname, `f-${depth}-${f}`), '', options);
42 path.join(dirname, `link-${depth}-good`),
49 path.join(dirname, `link-${depth}-bad`),
57 path.join(dirname, `link-${depth}-loop-${y}`),
64 fs.writeFileSync(path.join(dirname, '[a-z0-9].txt'), '', options);
73 path.join(dirname, `folder-${depth}-${f}`),
80 path.join(dirname, `d-${depth}-${f}`),
131 path.join(tmpdi
[all...]
/third_party/node/deps/npm/node_modules/env-paths/
H A Dindex.js10 const library = path.join(homedir, 'Library');
13 data: path.join(library, 'Application Support', name),
14 config: path.join(library, 'Preferences', name),
15 cache: path.join(library, 'Caches', name),
16 log: path.join(library, 'Logs', name),
17 temp: path.join(tmpdir, name)
22 const appData = env.APPDATA || path.join(homedir, 'AppData', 'Roaming');
23 const localAppData = env.LOCALAPPDATA || path.join(homedir, 'AppData', 'Local');
27 data: path.join(localAppData, name, 'Data'),
28 config: path.join(appDat
[all...]
/build/ohos/images/
H A Dbuild_image.py37 root_dir = os.path.join(os.path.dirname(system_path), 'root')
46 os.makedirs(os.path.join(root_dir, _dir_name), exist_ok=True)
47 os.symlink('/system/bin', os.path.join(root_dir, 'bin'))
48 os.symlink('/system/bin/init', os.path.join(root_dir, 'init'))
49 os.symlink('/system/etc', os.path.join(root_dir, 'etc'))
50 os.symlink('/vendor', os.path.join(root_dir, 'chipset'))
52 os.symlink('/system/lib64', os.path.join(root_dir, 'lib64'))
53 os.symlink('/system/lib', os.path.join(root_dir, 'lib'))
59 _path = os.path.join(updater_path, _dir_name)
63 if not os.path.exists(os.path.join(updater_pat
[all...]
/third_party/node/deps/openssl/openssl/Configurations/
H A Dwindows-makefile.tmpl4 ## {- join("\n## ", @autowarntext) -}
50 LIBS={- join(" ", map { ( platform->sharedlib_import($_), platform->staticlib($_) ) } @{$unified_info{libraries}}) -}
51 SHLIBS={- join(" ", map { platform->sharedlib($_) // () } @{$unified_info{libraries}}) -}
52 SHLIBPDBS={- join(" ", map { platform->sharedlibpdb($_) // () } @{$unified_info{libraries}}) -}
60 join(" ", @MODULES) -}
61 MODULEPDBS={- join(" ", map { platform->dsopdb($_) } @{$unified_info{modules}}) -}
69 join(" ", map { platform->dso($_) } @fipsmodules) -}
71 join(", ", map { basename(platform->dso($_)) } @fipsmodules) -}
72 PROGRAMS={- our @PROGRAMS = map { platform->bin($_) } @{$unified_info{programs}}; join(" ", @PROGRAMS) -}
73 PROGRAMPDBS={- join(" ", ma
[all...]
/third_party/openssl/Configurations/
H A Dwindows-makefile.tmpl4 ## {- join("\n## ", @autowarntext) -}
50 LIBS={- join(" ", map { ( platform->sharedlib_import($_), platform->staticlib($_) ) } @{$unified_info{libraries}}) -}
51 SHLIBS={- join(" ", map { platform->sharedlib($_) // () } @{$unified_info{libraries}}) -}
52 SHLIBPDBS={- join(" ", map { platform->sharedlibpdb($_) // () } @{$unified_info{libraries}}) -}
60 join(" ", @MODULES) -}
61 MODULEPDBS={- join(" ", map { platform->dsopdb($_) } @{$unified_info{modules}}) -}
69 join(" ", map { platform->dso($_) } @fipsmodules) -}
71 join(", ", map { basename(platform->dso($_)) } @fipsmodules) -}
72 PROGRAMS={- our @PROGRAMS = map { platform->bin($_) } @{$unified_info{programs}}; join(" ", @PROGRAMS) -}
73 PROGRAMPDBS={- join(" ", ma
[all...]
/third_party/python/Lib/test/
H A Dtest_shutil.py76 If *path* is a tuple instead of a string, os.path.join will be used to
81 path = os.path.join(*path)
98 chunk = b"".join([random.choice(string.ascii_letters).encode()
108 If *path* is a tuple instead of a string, os.path.join will be used to
113 path = os.path.join(*path)
122 p = os.path.join(path, name)
191 victim = os.path.join(tmp, 'killme')
193 write_file(os.path.join(victim, 'somefile'), 'foo')
201 dir_ = os.path.join(tmp, 'dir')
203 link = os.path.join(tm
[all...]
H A Dtest_glob.py15 return os.path.normpath(os.path.join(self.tempdir, *parts))
18 return [os.path.join(self.tempdir, *parts) for parts in tuples]
42 os.symlink(os.path.join('a', 'bcd'), self.norm('sym3'))
57 pattern = os.path.join(*parts)
58 p = os.path.join(self.tempdir, pattern)
75 self.assertCountEqual([os.path.join(self.tempdir, x) for x in res2],
118 res = glob.glob(os.path.join(os.curdir, '*'))
123 res = glob.glob(os.path.join(os.fsencode(os.curdir), b'*'))
311 join = os.path.join
[all...]
/third_party/jerryscript/tests/jerry/
H A Darray-prototype-join.js15 assert ([].join() === "");
16 assert ([1].join() === "1");
17 assert ([1, 2].join() === "1,2");
20 assert ([].join('--') === "");
21 assert ([1].join("--") === "1");
22 assert ([1, 2].join('--') === "1--2");
24 assert ([1,2,3].join({toString: function() { return "--"; }}) === "1--2--3");
27 // Join should use 'length' to as the number of elements int the array.
30 assert (lst.join() === [1,2,3].join());
[all...]
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/
H A Dhdf_utils.py30 self.upper = '_'.join([w.upper() for w in self.words_list])
31 self.lower = '_'.join([w.lower() for w in self.words_list])
32 self.upper_camel = ''.join([w.capitalize() for w in self.words_list])
206 return os.path.join(root, 'drivers', 'adapter', 'khdf', 'liteos')
210 return os.path.join(root, 'vendor')
214 return os.path.join(get_vendor_root_dir(root), vendor)
219 return os.path.join(root, relative_path)
229 create_file_save_path = os.path.join(adapter_framework, save_file_path)
239 return os.path.join(root, relative_path)
244 return os.path.join(roo
[all...]
/third_party/jerryscript/tools/
H A Dsettings.py20 PROJECT_DIR = path.normpath(path.join(TOOLS_DIR, '..'))
21 DEBUGGER_TESTS_DIR = path.join(PROJECT_DIR, 'tests/debugger')
22 JERRY_TESTS_DIR = path.join(PROJECT_DIR, 'tests/jerry')
23 JERRY_TEST_SUITE_DIR = path.join(PROJECT_DIR, 'tests/jerry-test-suite')
24 JERRY_TEST_SUITE_MINIMAL_LIST = path.join(PROJECT_DIR, 'tests/jerry-test-suite/minimal-profile-list')
25 TEST262_TEST_SUITE_DIR = path.join(PROJECT_DIR, 'tests/test262')
27 BUILD_SCRIPT = path.join(TOOLS_DIR, 'build.py')
28 CPPCHECK_SCRIPT = path.join(TOOLS_DIR, 'check-cppcheck.sh')
29 DEBUGGER_CLIENT_SCRIPT = path.join(PROJECT_DIR, 'jerry-debugger/jerry_client.py')
30 DEBUGGER_TEST_RUNNER_SCRIPT = path.join(TOOLS_DI
[all...]
/third_party/node/test/es-module/
H A Dtest-esm-extension-lookup-deprecation.mjs14 const cwd = path.join(tmpdir.path, Math.random().toString());
15 const pkgPath = path.join(cwd, './node_modules/pkg/');
17 await writeFile(path.join(pkgPath, './index.js'), 'console.log("Hello World!")');
18 await writeFile(path.join(pkgPath, './package.json'), JSON.stringify({
32 const cwd = path.join(tmpdir.path, Math.random().toString());
33 const pkgPath = path.join(cwd, './node_modules/pkg/');
35 await writeFile(path.join(pkgPath, './index.js'), 'console.log("Hello World!")');
36 await writeFile(path.join(pkgPath, './package.json'), JSON.stringify({
37 main: path.join(pkgPath, './index.js'),
51 const cwd = path.join(tmpdi
[all...]
/test/testfwk/developer_test/local_coverage/code_coverage/
H A Dmultiprocess_code_coverage.py46 sys.localcoverage_path = os.path.join(current_path, "..")
54 print("execute command: {}".format(" ".join(cmd_list)))
67 coverage_log_path = os.path.join(
80 subsystem_config_filepath = os.path.join(CODEPATH, SYSTEM_JSON)
96 subsystem_rootpath.append(os.path.join(CODEPATH, path))
140 topdir = os.path.join(cov_path, "obj")
150 if not os.path.isfile(os.path.join(find_path, fn)):
166 gcno_path = os.path.join(
167 os.path.join(CODEPATH, OUTPUT), gcda_strip_path, gcno_name
181 src_dir = os.path.join(CODEPAT
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdeclFileMethods.types27 return a + rests.join("");
28 >a + rests.join("") : string
30 >rests.join("") : string
31 >rests.join : (separator?: string) => string
33 >join : (separator?: string) => string
76 return a + rests.join("");
77 >a + rests.join("") : string
79 >rests.join("") : string
80 >rests.join : (separator?: string) => string
82 >join
[all...]
/test/testfwk/developer_test/local_coverage/
H A Dcoverage_tools.py35 all_system_info_path = os.path.join(
38 system_info_path = os.path.join(
62 coverage_path = os.path.join(developer_path, "reports/coverage")
63 code_path = os.path.join(
73 gcda_dir_path = os.path.join(developer_path, "local_coverage/code_coverage/results/coverage/data/cxx")
76 remove_out = os.path.join(gcda_dir_path, i, "obj/out")
77 remove_thrd = os.path.join(gcda_dir_path, i, "obj/third_party")
87 coverage_rc_path = os.path.join(
90 lcovrc_cov_template_path = os.path.join(coverage_rc_path, "lcovrc_cov_template")
92 tmp_cov_path = os.path.join(coverage_rc_pat
[all...]
/third_party/jerryscript/targets/curie_bsp/
H A Dsetup.py28 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'arc'),
32 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'include'),
36 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'quark'),
41 'link_name': os.path.join('quark', 'jerryscript')
46 src = os.path.join(jerry_path, link['src'])
47 link_name = os.path.join(project_path, link['link_name'])
58 src_dir = os.path.join(root_dir, sub_dir)
63 file_path = os.path.join(root, filename)
79 for sub_dir in ['jerry-core', 'jerry-libm', os.path.join('targets', 'curie_bsp', 'source')]:
81 path = os.path.join('jerryscrip
[all...]
/third_party/python/Mac/BuildScript/
H A Dbuild-installer.py92 os.path.join(SRCDIR, 'configure'), 'PACKAGE_VERSION')
104 fn = os.path.join(SRCDIR, 'Include', 'patchlevel.h')
120 DEPSRC = os.path.join(WORKDIR, 'third-party')
288 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
306 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
355 shellQuote(os.path.join(WORKDIR, 'libraries')),
356 shellQuote(os.path.join(WORKDIR, 'libraries')),
579 libfw = os.path.join('/', fwpth)
580 usrfw = os.path.join(os.getenv('HOME'), fwpth)
762 return os.path.join(builddi
[all...]
/third_party/skia/infra/bots/recipe_modules/build/
H A Dchromebook.py16 skia_dir = checkout_root.join('skia')
26 clang_linux = os.path.join(top_level, 'clang_linux')
28 sysroot_dir = os.path.join(top_level, 'armhf_sysroot')
31 'cc': "%s" % os.path.join(clang_linux, 'bin','clang'),
32 'cxx': "%s" % os.path.join(clang_linux, 'bin','clang++'),
46 gl_dir = os.path.join(top_level, 'chromebook_arm_gles')
47 env = {'LD_LIBRARY_PATH': os.path.join(sysroot_dir, 'lib')}
59 '-I%s' % os.path.join(gl_dir, 'include'),
60 '-I%s' % os.path.join(sysroot_dir, 'include'),
61 '-I%s' % os.path.join(sysroot_di
[all...]
/build/ohos/sdk/
H A Dconvert_permissions.py22 OUTPATH = os.path.join(OUT_ROOT, "public_interface/sdk-js")
23 API_PATH = os.path.join(OUTPATH, "api")
24 API_GEN_PATH = os.path.join(OUTPATH, "build-tools/api")
28 source = os.path.join(source_root, INTERFACE_PATH)
29 dest = os.path.join(source_root, OUTPATH)
35 source = os.path.join(source_root, API_PATH)
36 dest = os.path.join(source_root, API_GEN_PATH)
42 permission_convert_dir = os.path.join(OUTPATH, "build-tools", "permissions_converter")
43 permission_convert_tool = os.path.join(permission_convert_dir, "convert.js")
44 config_file = os.path.join("bas
[all...]
H A Dparse_public_sdk.py28 OUTPATH = os.path.join(OUT_ROOT, "public_interface/sdk-js")
29 API_MODIFY_DIR = os.path.join(OUTPATH, "build-tools")
30 API_MODIFY_TOOL = os.path.join(API_MODIFY_DIR, "delete_systemapi_plugin.js")
31 API_PATH = os.path.join(OUTPATH, "api")
32 API_GEN_PATH = os.path.join(OUTPATH, "build-tools/api")
33 KITS_PATH = os.path.join(OUTPATH, "kits")
34 KITS_GEN_PATH = os.path.join(OUTPATH, "build-tools/kits")
35 ARKTS_PATH = os.path.join(OUTPATH, "arkts")
36 ARKTS_GEN_PATH = os.path.join(OUTPATH, "build-tools/arkts")
41 source = os.path.join(source_roo
[all...]
/third_party/node/test/wasi/
H A Dtest-wasi-symlinks.js11 const wasmDir = path.join(__dirname, 'wasm');
21 const modulePath = path.join(wasmDir, `${process.argv[3]}.wasm`);
40 const sandbox = path.join(tmpdir.path, 'sandbox');
41 const sandboxedFile = path.join(sandbox, 'input.txt');
42 const externalFile = path.join(tmpdir.path, 'outside.txt');
43 const sandboxedDir = path.join(sandbox, 'subdir');
44 const sandboxedSymlink = path.join(sandboxedDir, 'input_link.txt');
45 const escapingSymlink = path.join(sandboxedDir, 'outside.txt');
46 const loopSymlink1 = path.join(sandboxedDir, 'loop1');
47 const loopSymlink2 = path.join(sandboxedDi
[all...]
/build/hb/util/preloader/
H A Dpreloader_process_data.py32 self.build_prop = os.path.join(output_dir, 'build.prop')
33 self.build_config_json = os.path.join(output_dir, 'build_config.json')
34 self.parts_json = os.path.join(output_dir, 'parts.json')
35 self.parts_config_json = os.path.join(output_dir, 'parts_config.json')
36 self.build_gnargs_prop = os.path.join(output_dir, 'build_gnargs.prop')
37 self.features_json = os.path.join(output_dir, 'features.json')
38 self.syscap_json = os.path.join(output_dir, 'syscap.json')
39 self.exclusion_modules_json = os.path.join(output_dir,
41 self.subsystem_config_json = os.path.join(output_dir,
43 self.subsystem_config_overlay_json = os.path.join(output_di
[all...]

Completed in 10 milliseconds

12345678910>>...286