Home
last modified time | relevance | path

Searched full:join (Results 376 - 400 of 5473) sorted by relevance

1...<<11121314151617181920>>...219

/third_party/node/test/parallel/
H A Dtest-module-stat.js10 const { join } = require('path');
12 const directory = join(tmpdir.path, 'directory');
13 const doesNotExist = join(tmpdir.path, 'does-not-exist');
14 const file = join(tmpdir.path, 'file.js');
H A Dtest-stdio-pipe-stderr.js6 const join = require('path').join;
14 const fakeModulePath = join(tmpdir.path, 'batman.js');
15 const stderrOutputPath = join(tmpdir.path, 'stderr-output.txt');
/third_party/python/Mac/IDLE/IDLE.app/Contents/MacOS/
H A DIDLE5 executable = os.path.join(execdir, "Python")
6 resdir = os.path.join(os.path.dirname(execdir), "Resources")
7 libdir = os.path.join(os.path.dirname(execdir), "Frameworks")
8 mainprogram = os.path.join(resdir, "idlemain.py")
/third_party/typescript/tests/baselines/reference/
H A DrecursiveReverseMappedType.js8 function join<T>(l: Recur<T>[]): Recur<T> {
13 const x: Recur<T> | undefined = join(l);
29 function join(l) { function
33 var x = join(l);
H A DundeclaredModuleError.js5 function join(...paths: string[]) {} function
12 var fullPath = join(IDoNotExist);
23 function join() {
34 var fullPath = join(IDoNotExist);
H A DpropertyAssignmentUseParentType3.types23 foo2.join = "";
24 >foo2.join = "" : ""
25 >foo2.join : string
27 >join : string
/third_party/typescript/tests/cases/fourslash/
H A DquickInfoImportedTypesWithMergedMeanings.ts22 ].join("\n"), "some docs");
29 ].join("\n"), "some docs");
35 ].join("\n"), "some docs");
41 ].join("\n"), "some docs");
/third_party/python/Lib/test/test_import/
H A D__init__.py460 sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'data'))
492 depname = os.path.join(
497 tmp2 = os.path.join(tmp, "DLLs")
500 pyexe = os.path.join(tmp, os.path.basename(sys.executable))
503 for f in glob.glob(os.path.join(glob.escape(sys.prefix), "vcruntime*.dll")):
514 pyexe, "-Sc", ";".join([
639 file_name = os.path.join(dir_name, module_name) + os.extsep + "py"
727 with open(os.path.join(self.path, 'test_trailing_slash.py'),
738 with open(os.path.join(self.path, 'test_unc_path.py'), 'w') as f:
821 path = os.path.join(o
[all...]
/base/update/packaging_tools/
H A Dutils.py47 SO_PATH = os.path.join(operation_path, 'lib/libpackage.so')
48 SO_PATH_L1 = os.path.join(operation_path, 'lib/libpackageL1.so')
49 DIFF_EXE_PATH = os.path.join(operation_path, 'lib/diff')
50 E2FSDROID_PATH = os.path.join(operation_path, 'lib/e2fsdroid')
237 os.mkdir(os.path.join(tmp_dir, name))
239 ext_filename = os.path.join(
251 unzip_dir = os.path.join(tmp_dir, tmp_dir_list[0])
283 mbn_path = os.path.join(mbn_dir, soft_version_file)
341 tem_path = os.path.join(OPTIONS_MANAGER.target_package_dir, component.get("#text", None))
398 os.path.join(OPTIONS_MANAGE
[all...]
/third_party/node/deps/v8/tools/dev/
H A Dgm.py100 """ % {"arches": " ".join(ARCHES),
101 "modes": " ".join(MODES),
102 "targets": ", ".join(TARGETS)}
125 if os.path.exists(os.path.join(path, cmd)):
126 return os.path.join(path, cmd)
138 cipd_bin = os.path.join(os.path.dirname(goma), ".cipd_bin")
238 return p.returncode, "".join(output)
256 return os.path.join(OUTDIR, subdir)
340 return template % "\n".join(arch_specific)
344 args_gn = os.path.join(pat
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/tools/
H A Dexpect.py122 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)
300 obj_file = str(os.path.join(status.directory, object_filename))
333 os.path.join(status.directory, object_filename))
345 target_filename = os.path.join(status.directory, self.target_filename)
358 diff='\n'.join(
385 os.path.join(status.directory, assembly_filename))
405 os.path.join(statu
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/
H A Dexpect.py122 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)
300 obj_file = str(os.path.join(status.directory, object_filename))
333 os.path.join(status.directory, object_filename))
345 target_filename = os.path.join(status.directory, self.target_filename)
358 diff='\n'.join(
385 os.path.join(status.directory, assembly_filename))
405 os.path.join(statu
[all...]
/third_party/python/Lib/test/
H A Dtest_sysconfig.py45 self.join = os.path.join
68 os.path.join = self.join
149 libpath = os.path.join('lib',
154 binpath = os.path.join(sys.prefix, binpath)
155 incpath = os.path.join(sys.prefix, incpath)
156 libpath = os.path.join(sys.prefix, libpath)
171 libpath = os.path.join('Lib', 'site-packages')
174 binpath = os.path.join(sy
[all...]
H A Dtest_os.py146 path = os.path.join(path, dirname)
729 fname = os.path.join(os.environ['TEMP'], self.fname)
756 self.fname = os.path.join(self.dirname, "f1")
1039 formatted_items = ", ".join(
1048 test_env = {'PATH': os.pathsep.join(test_path)}
1287 join = os.path.join
1307 self.walk_path = join(os_helper.TESTFN, "TEST1")
1308 self.sub1_path = join(self.walk_path, "SUB1")
1309 self.sub11_path = join(sel
[all...]
/third_party/skia/include/core/
H A DSkPaint.h337 /** \enum SkPaint::Join
338 Join specifies how corners are drawn when a shape is stroked. Join
342 Choose miter join to draw sharp corners. Choose round join to draw a circle with a
343 radius equal to the stroke width on top of the corner. Choose bevel join to minimally
346 The fill path constructed to describe the stroked path respects the join setting but may
347 not contain the actual join. For instance, a fill path constructed with round joins does
350 enum Join : uint8_t {
354 kLast_Join = kBevel_Join, //!< equivalent to the largest value for Join
[all...]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dohos_gen_framework.py35 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 Dntpath.py27 __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/global/i18n_lite/tools/i18n-dat-tool/src/main/python/ohos/global/i18n/
H A Dgenerate_dat.py42 resource_str = '_'.join(locale_metas.get(resource_id, []))
65 with open(os.path.join(path, locales_file_name), 'r', encoding='utf-8') as locale_file:
71 with open(os.path.join(path, resource_item_file_name), 'r', encoding='utf-8') as resource_file:
78 with open(os.path.join(path, resource_name), 'r', encoding='utf-8') as item_file:
179 resource_str = '_'.join(resource_vals)
198 resource_path = os.path.join(os.path.dirname(current_file_path), "..", "..", "..", "..", "resource")
203 save_path = os.path.join(*save_path)
/third_party/python/Lib/test/support/
H A Dthreading_helper.py82 join() method.
107 """Join a thread. Raise an AssertionError if the thread is still alive
112 thread.join(timeout)
114 msg = f"failed to join the thread in {timeout:.1f} seconds"
142 t.join(max(endtime - time.monotonic(), 0.01))
147 print('Unable to join %d threads during a period of '
153 raise AssertionError('Unable to join %d threads' % len(started))
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
H A Dretrace_restricted_traces.py34 return os.path.join(script_dir, trace)
42 try_path = os.path.join(trace_path, header)
141 with open(os.path.join(script_dir, DEFAULT_TEST_JSON)) as f:
146 binary = os.path.join(args.gn_path, DEFAULT_TEST_SUITE)
155 trace_path = os.path.abspath(os.path.join(args.out_path, trace))
201 (' '.join(run_args), str(additional_env)))
219 print('\n'.join([' ' + trace for trace in failures]))
/third_party/skia/infra/bots/recipes/
H A Dtest.py51 api.flavor.create_clean_host_dir(api.path['start_dir'].join('test'))
59 host_hashes_file = api.vars.tmp_dir.join(hash_filename)
214 api.path['start_dir'].join('skia'),
215 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
217 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
219 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
221 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
/third_party/rust/crates/rust-openssl/openssl-sys/build/
H A Dfind_normal.rs20 if openssl_dir.join("lib64").exists() { in get_openssl()
21 lib_dirs.push(openssl_dir.join("lib64")); in get_openssl()
23 if openssl_dir.join("lib").exists() { in get_openssl()
24 lib_dirs.push(openssl_dir.join("lib")); in get_openssl()
28 let include_dir = include_dir.unwrap_or_else(|| openssl_dir.join("include")); in get_openssl()
41 let homebrew = Path::new(dir).join(format!("opt/{}", version)); in resolve_with_wellknown_homebrew_location()
64 let include_openssl = root_dir.join("include/openssl"); in resolve_with_wellknown_location()
/third_party/jerryscript/tests/jerry/es2015/
H A DtypedArray-join.js21 assert(float_array.join() === float_array.toString());
22 assert(int_array.join('-') === "3-2-1-100--30");
23 assert(uint_array.join('=') === "3=2=1=100=226");
24 assert(empty_array.join('_') === "");
/third_party/node/benchmark/esm/
H A Desm-loader-defaultResolve.js14 const parentURL = pathToFileURL(path.join(benchmarkDirectory, 'entry-point.js'));
38 fs.mkdirSync(path.join(benchmarkDirectory, 'node_modules', 'unprefixed-existing'), { recursive: true });
39 fs.writeFileSync(path.join(benchmarkDirectory, 'node_modules', 'unprefixed-existing', 'index.js'), '\n');
40 fs.writeFileSync(path.join(benchmarkDirectory, 'relative-existing.js'), '\n');
/third_party/python/Lib/test/test_tools/
H A D__init__.py26 toolsdir = os.path.join(basepath, 'Tools')
27 scriptsdir = os.path.join(toolsdir, 'scripts')
31 tooldir = os.path.join(toolsdir, tool)
40 tooldir = os.path.join(toolsdir, name, *subdirs)

Completed in 18 milliseconds

1...<<11121314151617181920>>...219