| /third_party/python/Lib/distutils/tests/ |
| H A D | test_dir_util.py | 29 self.root_target = os.path.join(tmp_dir, 'deep') 30 self.target = os.path.join(self.root_target, 'here') 31 self.target2 = os.path.join(tmp_dir, 'deep2') 95 a_file = os.path.join(self.target, 'ok.txt') 109 a_file = os.path.join(self.target, 'ok.txt') 110 nfs_file = os.path.join(self.target, '.nfs123abc')
|
| 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/python/Lib/test/ |
| H A D | test_code_module.py | 55 if 'antioch' in ''.join(call[1]): 64 if 'NameError' in ''.join(call[1]): 123 output = ''.join(''.join(call[1]) for call in self.stderr.method_calls) 139 output = ''.join(''.join(call[1]) for call in self.stderr.method_calls)
|
| /third_party/skia/infra/bots/recipes/ |
| H A D | upload_dm_results.py | 33 results_dir = api.path['start_dir'].join('test') 47 api.gsutil.cp('%s images' % ext, results_dir.join('*%s' % ext), 52 summary_dest_path = '/'.join([ 64 summary_dest_path = '/'.join(('trybot', summary_dest_path, 71 json_file = results_dir.join(DM_JSON) 72 log_file = results_dir.join(VERBOSE_LOG)
|
| 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/framework/delibs/decpp/ |
| H A D | deFilePath.hpp | 64 static FilePath join (const FilePath& a, const FilePath& b); 65 FilePath& join (const FilePath& b); 71 static FilePath join (const std::vector<std::string>& components); 107 inline FilePath& FilePath::join (const FilePath& b) in join() function in de::FilePath 116 inline FilePath FilePath::join (const FilePath& a, const FilePath& b) in join() function in de::FilePath 118 return FilePath(a).join(b); in join()
|
| /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');
|
| H A D | test-fs-promises.js | 330 const dir = path.join(tmpDir, nextdir()); 373 const dir = path.join(tmpDir, nextdir()); 381 const dir = path.join(tmpDir, nextdir()); 389 const dir = path.join(tmpDir, nextdir(), nextdir()); 397 const dir = path.join(tmpDir, nextdir(), nextdir()); 413 const file = path.join(tmpDir, nextdir(), nextdir()); 414 const dir = path.join(file, nextdir(), nextdir()); 447 const dir = path.join(tmpDir, nextdir(), nextdir());
|
| /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/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/vk-gl-cts/external/vulkancts/scripts/ |
| H A D | ohos_gen_framework.py | 35 sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "..", "scripts")) 40 VULKAN_XML_DIR = os.path.join(os.path.dirname(__file__), "..", "..", "vulkan-docs", "src", "xml") 41 SCRIPTS_SRC_DIR = os.path.join(os.path.dirname(__file__), "src") 42 DEFAULT_OUTPUT_DIR = { "" : os.path.join(os.path.dirname(__file__), "..", "framework", "vulkan", "generated", "vulkan"), 43 "SC" : os.path.join(os.path.dirname(__file__), "..", "framework", "vulkan", "generated", "vulkansc") } 336 for fileName in glob.glob(os.path.join(SCRIPTS_SRC_DIR, "extensions", "*.json")): 1133 return ", ".join(argumentToString(arg) for arg in args) 1206 yield " %sm_vk.%s(%s);" % ("return " if function.returnType != "void" else "", getInterfaceName(function.name), ", ".join(a.name for a in function.arguments)) 1208 yield " %sm_vk.%s(%s);" % ("return " if function.returnType != "void" else "", getInterfaceName(function.aliasList[0]), ", ".join(a.name for a in function.arguments)) 1210 yield " %sm_vk.%s(%s);" % ("return " if function.returnType != "void" else "", getInterfaceName(function.name), ", ".join( [all...] |
| /third_party/python/Lib/ |
| H A D | ntpath.py | 27 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 106 # Join two (or more) paths. 107 def join(path, *paths): function 147 genericpath._check_arg_types('join', path, *paths) 205 # join(head, tail) == p holds. 343 userhome = join(drive, os.environ['HOMEPATH']) 359 userhome = join(dirname(userhome), target_user) 535 return prefix + sep.join(comps) 559 path = join(cwd, path) 615 path = normpath(join(dirnam [all...] |
| /base/web/webview/ohos_interface/ohos_glue/scripts/ |
| H A D | translator.py | 82 dir_path = os.path.join(os.path.join(work_dir, dir_name), 'capi') 96 dir_path = os.path.join(os.path.join(work_dir, dir_name), 'cpptoc') 116 dir_path = os.path.join(os.path.join(work_dir, dir_name), 'ctocpp') 140 include_file_dir = os.path.join(os.path.join(root_dir, dir_name), 'include')
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
| H A D | XCldrStub.java | 243 public static <T> String join(T[] source, String separator) { in join() method in XCldrStub 252 public static <T> String join(Iterable<T> source, String separator) { in join() method in XCldrStub 264 public static <T, U extends Iterable<T>> String join(U source, String separator) { in join() method in XCldrStub.CollectionUtilities 265 return XCldrStub.join(source, separator); in join() 277 public <T> String join(T[] source) { in join() method in XCldrStub.Joiner 278 return XCldrStub.join(source, separator); in join() 280 public <T> String join(Iterable<T> source) { in join() method in XCldrStub.Joiner 281 return XCldrStub.join(source, separator); in join()
|
| /third_party/node/deps/v8/tools/release/ |
| H A D | roll_merge.py | 94 % ", ".join(port_revision_list)): 105 self["revision_list"] = ", ".join(self["full_revision_list"]) 114 "\n".join(action_text % s for s in self["full_revision_list"]), 127 bug_aggregate = ",".join(sorted(filter(lambda s: s and s != "none", bugs))) 131 self["new_commit_msg"] = "".join(msg_pieces) 165 text = FileToText(os.path.join(self.default_cwd, VERSION_FILE)) 169 TextToFile(text, os.path.join(self.default_cwd, VERSION_FILE)) 171 self.Editor(os.path.join(self.default_cwd, VERSION_FILE))
|
| /third_party/node/deps/v8/tools/sanitizers/ |
| H A D | sancov_merger.py | 42 SANCOV_TOOL = os.path.join( 84 with open(os.path.join(coverage_dir, result_file_name), "wb") as f: 88 os.remove(os.path.join(coverage_dir, f)) 169 input_file = os.path.join(swarming_output_dir, f) 170 output_file = os.path.join(coverage_dir, f) 188 if os.path.exists(os.path.join(options.coverage_dir, f)): 193 os.rename(os.path.join(options.swarming_output_dir, f), 194 os.path.join(options.coverage_dir, f))
|