/third_party/python/Lib/ |
H A D | posixpath.py | 31 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 67 # Join pathnames. 71 def join(a, *p): function 72 """Join two or more pathname components, inserting '/' as needed. 90 genericpath._check_arg_types('join', a, *p) 200 parent = join(path, b'..') 202 parent = join(path, '..') 383 path = sep.join(comps) 405 path = join(cwd, path) 419 # Join tw [all...] |
/third_party/spirv-tools/test/tools/ |
H A D | expect.py | 122 all_files = [os.path.join(status.directory, f) for f in all_files] 252 os.path.join(status.directory, object_filename)) 267 os.path.join(status.directory, object_filename), 0x10300) 282 os.path.join(status.directory, object_filename), 0x10500) 297 os.path.join(status.directory, object_filename), 0x10600) 315 obj_file = str(os.path.join(status.directory, object_filename)) 348 os.path.join(status.directory, object_filename)) 360 target_filename = os.path.join(status.directory, self.target_filename) 373 diff='\n'.join( 400 os.path.join(statu [all...] |
/foundation/ability/idl_tool/test/hdi_unittest/hdi_hash_test/ |
H A D | hash_bad_04.py | 24 file_path = os.path.join(work_dir, "foo", "v1_0", "IFoo.idl") 28 fail_output = os.path.join(self.target_dir, "fail_output.txt") 34 package_path = os.path.join(work_dir, "foo") 35 idl_dir = os.path.join(package_path, "v1_0")
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/ |
H A D | helpers.js | 17 const BASE_DIR = path.join(path.dirname(__dirname), 'test_data'); 18 const DB_DIR = path.join(BASE_DIR, 'fake_db'); 56 const absPath = path.join(BASE_DIR, expectedPath); 65 assert.strictEqual(expected.join('\n'), result.trim());
|
/third_party/node/deps/v8/tools/unittests/ |
H A D | compare_torque_output_test.py | 14 COMPARE_SCRIPT = os.path.join(TOOLS_DIR, 'compare_torque_output.py') 15 TEST_DATA = os.path.join(TOOLS_DIR, 'unittests', 'testdata', 'compare_torque') 24 file1 = os.path.join(TEST_DATA, test_folder, 'f1') 25 file2 = os.path.join(TEST_DATA, test_folder, 'f2')
|
/third_party/node/test/parallel/ |
H A D | test-fs-mkdir-recursive-eaccess.js | 44 const dir = path.join(tmpdir.path, `mkdirp_${n++}`); 49 fs.mkdirSync(path.join(dir, '/foo'), { recursive: true }); 61 const dir = path.join(tmpdir.path, `mkdirp_${n++}`); 64 fs.mkdir(path.join(dir, '/bar'), { recursive: true }, (err) => {
|
H A D | test-fs-write-file-buffer.js | 24 const join = require('path').join; 47 data = data.join('\n'); 53 fs.writeFileSync(join(tmpdir.path, 'test.jpg'), buf);
|
H A D | test-snapshot-api.js | 20 const blobPath = path.join(tmpdir.path, 'snapshot.blob'); 29 fs.writeFileSync(path.join(tmpdir.path, book), content, 'utf8'); 31 fs.copyFileSync(entry, path.join(tmpdir.path, 'entry.js')); 45 const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
|
H A D | test-snapshot-typescript.js | 15 const blobPath = path.join(tmpdir.path, 'snapshot.blob'); 20 const file = path.join(tmpdir.path, 'snapshot.js'); 40 const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob')); 45 const outPath = path.join(tmpdir.path, 'ts-example.js');
|
/third_party/node/deps/npm/node_modules/cli-columns/ |
H A D | index.js | 42 return value + filler.join(character); 52 return arr.join(''); 72 return cells.join(options.newline); 79 .join(options.newline);
|
/third_party/python/Tools/scripts/ |
H A D | win_add2path.py | 22 scripts = os.path.join(pythonpath, "Scripts") 27 userscripts = os.path.join(userpath, "Scripts") 42 envpath = os.pathsep.join(paths) 50 print('\n'.join(paths[1:]))
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_build.py | 25 wanted = os.path.join(cmd.build_base, 'lib') 35 wanted = os.path.join(cmd.build_base, 'lib' + plat_spec) 42 wanted = os.path.join(cmd.build_base, 'temp' + plat_spec) 46 wanted = os.path.join(cmd.build_base,
|
/third_party/toybox/ |
H A D | install.py | 20 bin_dir = os.path.join(out_dir, 'bin') 24 sbin_dir = os.path.join(out_dir, 'sbin') 28 usr_bin_dir = os.path.join(out_dir, 'usr', 'bin') 32 usr_sbin_dir = os.path.join(out_dir, 'usr', 'sbin')
|
/third_party/typescript/tests/baselines/reference/ |
H A D | typeGuardsOnClassProperty.js | 11 return typeof data === "string" ? data : data.join(" "); 15 return typeof this.data === "string" ? this.data : this.data.join(" "); 41 return typeof data === "string" ? data : data.join(" ");
44 return typeof this.data === "string" ? this.data : this.data.join(" ");
|
/third_party/skia/docs/examples/ |
H A D | strokerect_gm.cpp | 7 constexpr SkPaint::Join gJoins[] = {SkPaint::kMiter_Join, SkPaint::kRound_Join, in REG_FIDDLE() 29 SkPaint::Join join = gJoins[i]; in REG_FIDDLE() local 43 paint.setStrokeJoin(join); in REG_FIDDLE()
|
/third_party/skia/platform_tools/android/bin/ |
H A D | android_build_app | 28 args_gn_path = os.path.join(args.output_dir, "args.gn") 43 subprocess.check_call(cmd, cwd=os.path.join(os.path.dirname(__file__), "..")) 50 apk_src = os.path.join(current_dir, "..", "apps", args.app_name, "build", "outputs", "apk", 53 apk_dst = os.path.join(args.output_dir, args.app_name + ".apk")
|
/third_party/skia/infra/bots/recipes/ |
H A D | upload_nano_results.py | 26 src_path = api.path['start_dir'].join('perf') 38 gs_path = '/'.join(( 44 gs_path = '/'.join(('trybot', gs_path, 47 dst = '/'.join((
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_framework_sc.py | 33 scriptPath = os.path.join(os.path.dirname(__file__), "..", "..", "..", "scripts") 39 VULKAN_HEADERS_INCLUDE_DIR = os.path.join(os.path.dirname(__file__), "..", "..", "vulkan-docs", "src", "include") 40 SCRIPTS_SRC_DIR = os.path.join(os.path.dirname(__file__), "src") 41 DEFAULT_OUTPUT_DIR = { "" : os.path.join(os.path.dirname(__file__), "..", "framework", "vulkan", "generated", "vulkan"), 42 "SC" : os.path.join(os.path.dirname(__file__), "..", "framework", "vulkan", "generated", "vulkansc") } 334 return ' '.join(self.type).replace(' *','*').replace(' &','&') 813 for fileName in glob.glob(os.path.join(SCRIPTS_SRC_DIR, "extensions", "*.json")): 1129 return ", ".join(v.getAsStringForArgumentList(' ') for v in args) 1194 yield " %sm_vk.%s(%s);" % ("return " if function.returnType != "void" else "", getInterfaceName(function), ", ".join(a.name for a in function.arguments)) 1196 yield " %sm_vk.%s(%s);" % ("return " if function.returnType != "void" else "", getInterfaceName(function.alias), ", ".join( [all...] |
/test/testfwk/developer_test/src/main/ |
H A D | _init_global_config.py | 39 sys.xdevice_dir = os.path.abspath(os.path.join( 47 sys.xdevice_extension_dir = os.path.abspath(os.path.join( 57 sys.pytest_dir = os.path.abspath(os.path.join( 64 sys.adapter_dir = os.path.abspath(os.path.join( 72 sys.hmh_script = os.path.abspath(os.path.join(
|
/third_party/freetype/ |
H A D | install.py | 46 src_file = os.path.join(src_path, file) 47 dst_file = os.path.join(dst_path, file) 91 tar_file_path = os.path.join(args.source_dir, "freetype-2.12.1.tar.xz") 92 target_dir = os.path.join(args.gen_dir, "freetype") 93 target_include_dir = os.path.join(target_dir, "include")
|
/third_party/cups/ |
H A D | install.py | 56 src_file = os.path.join(src_path, file) 57 dst_file = os.path.join(dst_path, file) 96 tar_file_path = os.path.join(args.source_dir, "cups-2.4.0-source.tar.gz") 97 target_dir = os.path.join(args.gen_dir, "cups-2.4.0") 98 convs_dir = os.path.join(target_dir, "conf")
|
/third_party/jerryscript/tools/ |
H A D | heaplimit_measure.py | 27 BASE_PATH = os.path.join(TOOLS_PATH, '..') 32 JERRY_BUILDER = os.path.join(BASE_PATH, 'tools', 'build.py') 33 JERRY_BIN = os.path.join(BASE_PATH, 'build', 'bin', 'jerry') 34 TEST_DIR = os.path.join(BASE_PATH, 'tests') 71 print('Building JerryScript with: %s' % (' '.join(command)))
|
/third_party/node/deps/v8/tools/dev/ |
H A D | update-compile-commands.py | 19 PYLIB_CHECK = os.path.join(PYLIB_PATH, 'clang', 'compile_db.py') 20 GM_CHECK = os.path.join(GM_PATH, 'gm.py') 44 build_dir = os.path.join("out", "%s.%s" % (arch, mode)) 48 args_gn = os.path.join(build_dir, "args.gn") 52 build_ninja = os.path.join(build_dir, "build.ninja")
|
/third_party/node/deps/npm/node_modules/@sigstore/tuf/dist/ |
H A D | client.js | 32 const cachePath = path_1.default.join(options.cachePath, repoName); 62 const targetsPath = path_1.default.join(cachePath, TARGETS_DIR_NAME); 74 const cachedRootPath = path_1.default.join(cachePath, 'root.json'); 94 fs_1.default.writeFileSync(path_1.default.join(cachePath, TARGETS_DIR_NAME, targetName), Buffer.from(target, 'base64')); 108 targetDir: path_1.default.join(options.cachePath, TARGETS_DIR_NAME),
|
/third_party/libffi/ |
H A D | install.py | 43 patch_dir = os.path.join(src_path, "patch") 45 src_file = os.path.join(patch_dir, file) 46 dst_file = os.path.join(dst_path, file) 68 tar_file_path = os.path.join(args.source_dir, "libffi-3.4.2.tar.gz") 69 target_dir = os.path.join(args.gen_dir, "libffi-3.4.2")
|