/third_party/skia/platform_tools/android/apps/skottie/ |
H A D | skottie_metric.sql | 12 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/hb/resources/ |
H A D | global_var.py | 24 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...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/ |
H A D | common_env.py | 43 netcfg_lib_dir = os.path.join(cur_file_path, '..', '..', '..', '..', '..', 46 os.path.join('build', 'scripts'), 47 os.path.join('build', 'libs'), 49 os.path.join('ohos', 'libs'), 54 os.path.join('build', 'libs'), 62 'boot': os.path.join('boot', 'flashboot'), 63 'loaderboot': os.path.join('boot', 'loaderboot'), 64 'drv': os.path.join('platform', 'drivers'), 65 'sys': os.path.join('platform', 'system'), 66 'at': os.path.join('component [all...] |
/third_party/node/test/parallel/ |
H A D | test-fs-cp.mjs | 18 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 D | test-fs-rm.js | 17 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...] |
/build/ |
H A D | prebuilts_config.py | 49 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/python/Lib/test/ |
H A D | test_shutil.py | 76 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 D | test_glob.py | 15 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...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/flashboot/ |
H A D | SConscript | 25 sign_tool = os.path.join("tools", "sign_tool", "sign_tool") 26 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_sha256.lds") 27 encrypt_key_path = os.path.join('tools', 'sign_tool', 'aes_key.txt') 29 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_sha256.lds") 31 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_rsa.lds") 32 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem') 33 sub_key_path = os.path.join('tools', 'sign_tool', 'sub_rsa.pem') 36 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_rsa.lds") 37 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem') 38 sub_key_path = os.path.join('tool [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/win_scripts/boot/flashboot/ |
H A D | SConscript | 25 sign_tool = os.path.join("tools", "sign_tool", "sign_tool") 26 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_sha256.lds") 27 encrypt_key_path = os.path.join('tools', 'sign_tool', 'aes_key.txt') 29 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_sha256.lds") 31 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_rsa.lds") 32 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem') 33 sub_key_path = os.path.join('tools', 'sign_tool', 'sub_rsa.pem') 36 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_rsa.lds") 37 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem') 38 sub_key_path = os.path.join('tool [all...] |
/third_party/node/deps/openssl/openssl/Configurations/ |
H A D | windows-makefile.tmpl | 4 ## {- 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 D | windows-makefile.tmpl | 4 ## {- 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/node/deps/npm/node_modules/env-paths/ |
H A D | index.js | 10 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 D | build_image.py | 37 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/jerryscript/tests/jerry/ |
H A D | array-prototype-join.js | 15 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...] |
/third_party/jerryscript/tools/ |
H A D | settings.py | 20 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 D | test-esm-extension-lookup-deprecation.mjs | 14 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...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | declFileMethods.types | 27 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...] |
/third_party/python/Mac/BuildScript/ |
H A D | build-installer.py | 92 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...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/ |
H A D | SConstruct | 29 sys.path.insert(0,os.path.join(os.getcwd(), 'build')) 53 log_file = os.path.join(env_cfg.log_path,'scons_trace.log') 68 libs = [env.SConscript(os.path.join(env_cfg.get_module_dir(module), 'SConscript'), {'env':env, 'env_cfg':env_cfg, 'module':module}, 69 variant_dir=os.path.join(env_cfg.lib_path, env_cfg.get_module_dir(module)), duplicate=0) for module in env_cfg.get_build_modules()] 76 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'debug', 'factory')) 78 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'debug', 'no_mesh_quick_start')) 80 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'debug', 'mesh')) 82 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'debug', 'no_mesh')) 85 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'release', 'factory')) 87 env.Append(LIBPATH=os.path.join(' [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/win_scripts/ |
H A D | SConstruct | 29 sys.path.append(os.path.join(os.getcwd(), 'build')) 53 log_file = os.path.join(env_cfg.log_path,'scons_trace.log') 68 libs = [env.SConscript(os.path.join(env_cfg.get_module_dir(module), 'SConscript'), {'env':env, 'env_cfg':env_cfg, 'module':module}, 69 variant_dir=os.path.join(env_cfg.lib_path, env_cfg.get_module_dir(module)), duplicate=0) for module in env_cfg.get_build_modules()] 76 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'debug', 'factory')) 78 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'debug', 'no_mesh_quick_start')) 80 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'debug', 'mesh')) 82 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'debug', 'no_mesh')) 85 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'hi3861', 'release', 'factory')) 87 env.Append(LIBPATH=os.path.join(' [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/loaderboot/ |
H A D | SConscript | 25 sign_tool = os.path.join("tools", "sign_tool", "sign_tool") 26 link_path = os.path.join(env_cfg.root, "build", "link", "loaderboot_sha256.lds") 27 encrypt_key_path = os.path.join('tools', 'sign_tool', 'aes_key.txt') 29 link_path = os.path.join(env_cfg.root, "build", "link", "loaderboot_sha256.lds") 31 link_path = os.path.join(env_cfg.root, "build", "link", "loaderboot_rsa.lds") 32 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem') 33 sub_key_path = os.path.join('tools', 'sign_tool', 'sub_rsa.pem') 36 link_path = os.path.join(env_cfg.root, "build", "link", "loaderboot_rsa.lds") 37 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem') 38 sub_key_path = os.path.join('tool [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/win_scripts/boot/loaderboot/ |
H A D | SConscript | 25 sign_tool = os.path.join("tools", "sign_tool", "sign_tool") 26 link_path = os.path.join(env_cfg.root, "build", "link", "loaderboot_sha256.lds") 27 encrypt_key_path = os.path.join('tools', 'sign_tool', 'aes_key.txt') 29 link_path = os.path.join(env_cfg.root, "build", "link", "loaderboot_sha256.lds") 31 link_path = os.path.join(env_cfg.root, "build", "link", "loaderboot_rsa.lds") 32 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem') 33 sub_key_path = os.path.join('tools', 'sign_tool', 'sub_rsa.pem') 36 link_path = os.path.join(env_cfg.root, "build", "link", "loaderboot_rsa.lds") 37 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem') 38 sub_key_path = os.path.join('tool [all...] |
/third_party/jerryscript/targets/curie_bsp/ |
H A D | setup.py | 28 '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/skia/infra/bots/recipe_modules/build/ |
H A D | chromebook.py | 16 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...] |