/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...] |
/base/web/webview/ |
H A D | copy_files.py | 24 sys.path.append(os.path.join(PROJECT_DIR, 'build')) 25 sys.path.append(os.path.join(PROJECT_DIR, 'build/hb')) 30 INTERFACE_DIR = os.path.join(WORK_SPACE, 'ohos_interface') 31 INTERFACE_INCLUDE_DIR = os.path.join(INTERFACE_DIR, 'include') 32 INTERFACE_OHOS_GLUE_DIR = os.path.join(INTERFACE_DIR, 'ohos_glue') 45 source_files.append(os.path.join(root, name)) 52 src_file = os.path.join(src_dir, item) 53 dst_file = os.path.join(dst_dir, item) 61 nweb_include = os.path.join('ohos_nweb', 'include') 62 include_source_files = copy_files(os.path.join(INTERFACE_INCLUDE_DI [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...] |
/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...] |
/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/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/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...] |
/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...] |
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/ |
H A D | hdf_utils.py | 30 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/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...] |
/base/security/selinux_adapter/scripts/ |
H A D | build_policy_api.py | 75 folder_list.append(os.path.join(root, dir_i)) 85 path = os.path.join(root, each_file) 122 print("".join([policy_file, " : need an empty line at end\n"])) 128 cmdstr = " ".join(in_cmd) 149 check_policy_cmd = [os.path.join(args.tool_path, "checkpolicy"), 157 return "".join([string, "_", version]) 174 cil_write.write(" ".join(elem_list)) 186 cil_write.write(" ".join(elem_list)) 198 cil_write.write(" ".join(elem_list)) 210 cil_write.write(" ".join(elem_lis [all...] |
/test/testfwk/developer_test/local_coverage/code_coverage/ |
H A D | multiprocess_code_coverage.py | 46 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 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...] |
/test/testfwk/developer_test/local_coverage/ |
H A D | coverage_tools.py | 35 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 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/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...] |
/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...] |
/third_party/node/test/wasi/ |
H A D | test-wasi-symlinks.js | 11 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...] |
/third_party/typescript/scripts/ |
H A D | produceLKG.mjs | 10 const root = path.join(__dirname, "..");
11 const source = path.join(root, "built/local");
12 const dest = path.join(root, "lib");
13 const copyright = fs.readFileSync(path.join(__dirname, "../CopyrightNotice.txt"), "utf-8");
35 const fileName = path.join(source, d);
40 await fs.copy(fileName, path.join(dest, d));
50 const protocolScript = path.join(__dirname, "buildProtocol.mjs");
55 const protocolInput = path.join(__dirname, "../src/server/protocol.ts");
56 const protocolServices = path.join(source, "typescriptServices.d.ts");
57 const protocolOutput = path.join(des [all...] |
/third_party/skia/infra/bots/assets/valgrind/ |
H A D | create.py | 24 INFRA_BOTS_DIR = os.path.realpath(os.path.join(FILE_DIR, os.pardir, os.pardir)) 32 TEMP_DIR = os.path.join(tempfile.gettempdir(), 'skia-%s' % VALGRIND) 33 INSTALL_DIR = os.path.join(TEMP_DIR, 'valgrind_install') 58 if os.path.isfile(os.path.join(INSTALL_DIR, 'bin', 'valgrind')): 60 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 67 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 68 os.mkdir(os.path.join(target_dir, 'bin')) 69 shutil.copy(os.path.join(INSTALL_DIR, 'bin', 'valgrind'), 70 os.path.join(target_dir, 'bin', 'valgrind')) 71 os.mkdir(os.path.join(target_di [all...] |
/third_party/python/Lib/distutils/tests/ |
H A D | test_install_data.py | 17 cmd.install_dir = inst = os.path.join(pkg_dir, 'inst') 22 one = os.path.join(pkg_dir, 'one') 24 inst2 = os.path.join(pkg_dir, 'inst2') 25 two = os.path.join(pkg_dir, 'two') 38 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo))) 40 self.assertTrue(os.path.exists(os.path.join(inst, rone))) 50 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo))) 51 self.assertTrue(os.path.exists(os.path.join(inst, rone))) 55 cmd.root = os.path.join(pkg_dir, 'root') 56 inst3 = os.path.join(cm [all...] |
/drivers/hdf_core/framework/tools/hcs-view/hcsVSCode/ |
H A D | extension.js | 25 let whiteCutImg = fs.readFileSync(path.join(imgDir, cutImgDict_['whiteCut'])); 27 let circleImg = fs.readFileSync(path.join(imgDir, cutImgDict_['circleCut'])); 29 let cicleOpenImg = fs.readFileSync(path.join(imgDir, cutImgDict_['circleOpenCut'])); 31 let rectangleFocusImg = fs.readFileSync(path.join(imgDir, cutImgDict_['rectangleFocusCut'])); 33 let nodeIconImg = fs.readFileSync(path.join(imgDir, cutImgDict_['nodeIconCut'])); 35 let attrIconImg = fs.readFileSync(path.join(imgDir, cutImgDict_['attrIconCut'])); 37 let rootIconImg = fs.readFileSync(path.join(imgDir, cutImgDict_['rootIconCut'])); 39 let rootIconFocusImg = fs.readFileSync(path.join(imgDir, cutImgDict_['rootIconFocusCut'])); 41 let backgroundImg = fs.readFileSync(path.join(imgDir, cutImgDict_['backgroundCut'])); 43 let popItemFocusImg = fs.readFileSync(path.join(imgDi [all...] |