Home
last modified time | relevance | path

Searched full:join (Results 351 - 375 of 6379) sorted by relevance

1...<<11121314151617181920>>...256

/third_party/node/test/parallel/
H A Dtest-runner-import-no-scheme.js32 const packageRoot = path.join(tmpdir.path, 'node_modules', 'test');
33 const reportersDir = path.join(tmpdir.path, 'node_modules', 'test', 'reporters');
34 const indexFile = path.join(packageRoot, 'index.js');
35 const reportersIndexFile = path.join(reportersDir, 'index.js');
62 const dummyFile = path.join(tmpdir.path, 'file.js');
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');
/third_party/python/Tools/peg_generator/scripts/
H A Ddownload_pypi_packages.py23 with open(os.path.join("data", f"{filename}.json"), "r") as f:
29 path = os.path.join("data", f"{filename}.json")
35 urlretrieve(url, os.path.join("data", f"{package_name}.json"))
46 urlretrieve(url, os.path.join("data", "pypi", filename))
63 os.mkdir(os.path.join("data", "pypi"))
/third_party/python/Lib/distutils/tests/
H A Dtest_text_file.py42 # result 5: strip comments and blanks, plus join lines (but don't
46 # result 6: strip comments and blanks, plus join lines (and
55 filename = os.path.join(tmpdir, "test.txt")
92 test_input(5, "join lines without collapsing", in_file, result5)
99 test_input(6, "join lines with collapsing", in_file, result6)
/third_party/skia/third_party/externals/harfbuzz/test/fuzzing/
H A Drun-subset-fuzzer-tests.py21 return 'error: timeout, ' + ' '.join (command), 1
27 hb_subset_fuzzer = os.path.join (top_builddir, "hb-subset-fuzzer" + EXEEXT)
48 path = os.path.join(parent_path, file)
68 run_dir (os.path.join (srcdir, "..", "subset", "data", "fonts"))
69 run_dir (os.path.join (srcdir, "fonts"))
/third_party/typescript/tests/baselines/reference/
H A Des2018IntlAPIs.symbols12 console.log(Intl.PluralRules.supportedLocalesOf(locales, options).join(', '));
16 >Intl.PluralRules.supportedLocalesOf(locales, options).join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
24 >join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
H A Des2018IntlAPIs.types18 console.log(Intl.PluralRules.supportedLocalesOf(locales, options).join(', '));
19 >console.log(Intl.PluralRules.supportedLocalesOf(locales, options).join(', ')) : void
23 >Intl.PluralRules.supportedLocalesOf(locales, options).join(', ') : string
24 >Intl.PluralRules.supportedLocalesOf(locales, options).join : (separator?: string) => string
33 >join : (separator?: string) => string
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);
/third_party/skia/infra/bots/recipe_modules/build/
H A Dandroid.py11 skia_dir = checkout_root.join('skia')
35 'ndk': quote(api.vars.workdir.join(ndk_path)),
65 gn_args = ' '.join('%s=%s' % (k,v) for (k,v) in sorted(args.items()))
66 gn = skia_dir.join('bin', 'gn')
70 script=skia_dir.join('bin', 'fetch-gn'),
/third_party/skia/infra/bots/assets/armhf_sysroot/
H A Dcreate.py38 os.path.join(target_dir, 'gcc-cross'))
42 os.path.join(target_dir, 'lib'))
44 os.path.join(target_dir, 'lib'))
51 bad_libpthread = os.path.join(target_dir, "lib", "libpthread.so")
58 bad_libc = os.path.join(target_dir, "lib", "libc.so")
/third_party/skia/infra/bots/
H A Dtest_utils.py26 dname = os.path.join(self._cwd, dname)
32 fname = os.path.join(self._cwd, fname)
39 fname = os.path.join(self._cwd, fname)
57 pathA = os.path.join(a, prefix, f)
58 pathB = os.path.join(b, prefix, f)
H A Dzip_utils_test.py24 fw = test_utils.FileWriter(os.path.join(os.getcwd(), 'input'))
33 fw.write(os.path.join('subdir', 'd.txt'), 0o640)
45 fw = test_utils.FileWriter(os.path.join(os.getcwd(), 'input'))
47 fw.write(os.path.join('.git', 'index'))
59 fw.remove(os.path.join('.git', 'index'))
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
H A DPaint.java70 public enum Join { enum in Paint
75 private Join(int nativeInt) { in Join() method in Paint.Join
80 public Paint setStrokeJoin(Join join) { in setStrokeJoin() argument
81 nSetStrokeJoin(mNativeInstance, join.nativeInt); in setStrokeJoin()
/foundation/resourceschedule/ffrt/test/ut/testcase/
H A Dut_csync.cpp544 th.join(); in HWTEST_F()
562 th1.join(); in HWTEST_F()
974 th1.join(); in HWTEST_F()
975 th2.join(); in HWTEST_F()
980 th0.join(); in HWTEST_F()
989 th1.join(); in HWTEST_F()
990 th2.join(); in HWTEST_F()
995 th0.join(); in HWTEST_F()
1063 t2.join(); in HWTEST_F()
1065 t4.join(); in HWTEST_F()
[all...]
/third_party/skia/src/gpu/tessellate/
H A DStrokeFixedCountTessellator.cpp126 // The shader interprets an empty stroke + empty join as a special case that denotes a in writeCircle()
136 // for its join. We write it out now. in finishContour()
172 // We don't know the previous control point yet to use for the join. Defer writing out in writeStroke()
201 // this stroke). This has the effect of disabling the next stroke's join. in discardStroke()
211 // We can't write out the first stroke until we know the previous control point for its join.
223 // Returns the worst-case number of edges we will need in order to draw a join of the given type.
224 int worst_case_edges_in_join(SkPaint::Join joinType, float numRadialSegmentsPerRadian) { in worst_case_edges_in_join()
228 // join of 180 degrees (SK_ScalarPI radians). in worst_case_edges_in_join()
400 // Each triangle strip has two sections: It starts with a join then transitions to a stroke. The in prepare()
401 // number of edges in an instance is the sum of edges from the join an in prepare()
[all...]
/third_party/python/Lib/test/
H A Dtest_reprlib.py235 self.pkgname = os.path.join(self.longname)
236 self.subpkgname = os.path.join(self.longname, self.longname)
240 create_empty_file(os.path.join(self.pkgname, '__init__.py'))
243 create_empty_file(os.path.join(self.subpkgname, '__init__.py'))
255 actions.append(os.path.join(dirpath, name))
287 create_empty_file(os.path.join(self.subpkgname, self.pkgname + '.py'))
297 write_file(os.path.join(self.subpkgname, 'foo.py'), '''\
314 write_file(os.path.join(self.subpkgname, 'bar.py'), '''\
325 write_file(os.path.join(self.subpkgname, 'baz.py'), '''\
338 write_file(os.path.join(sel
[all...]
/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/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/skia/third_party/externals/spirv-cross/
H A Dspirv_hlsl.cpp281 return join("Buffer<", type_to_glsl(imagetype), components, ">"); in image_type_hlsl_modern()
285 return join("RasterizerOrderedBuffer<", image_format_to_type(type.image.format, imagetype.basetype), in image_type_hlsl_modern()
291 return join(rw, "Buffer<", in image_type_hlsl_modern()
293 join(type_to_glsl(imagetype), components), in image_type_hlsl_modern()
315 return join(rw, "Texture", dim, ms, arrayed, "<", in image_type_hlsl_modern()
317 join(type_to_glsl(imagetype), components), in image_type_hlsl_modern()
408 return join("struct ", to_name(type.self)); in type_to_glsl()
474 return join("bool", type.vecsize); in type_to_glsl()
476 return join("int", type.vecsize); in type_to_glsl()
478 return join("uin in type_to_glsl()
[all...]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework_sc.py33 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...]
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
H A Dsource_helpers.js91 !fs.statSync(fsPath.join(realPath, component)).isDirectory()) {
105 realPath = fsPath.join(realPath, realComponent);
112 const fullPath = fsPath.join(baseDirectory, filePath);
122 const testPath = fsPath.join(baseDirectory, filePath);
209 return fsPath.join(this.baseDir, this.relPath);
317 const absPath = fsPath.resolve(fsPath.join(baseDir, relPath));
417 const absPath = fsPath.join(baseDir, relPath);
433 return loadDependency(__dirname, fsPath.join('resources', fileName));
446 return codePieces.join(EOL + EOL);
/third_party/node/deps/npm/node_modules/ip-address/dist/
H A Dipv4.js101 return this.parsedAddress.map((part) => parseInt(part, 10)).join('.');
118 return new Address4(groups.join('.'));
143 const address = leader.split('.').reverse().join('.');
153 return this.parsedAddress.map((part) => (0, sprintf_js_1.sprintf)('%02x', parseInt(part, 10))).join(':');
177 return output.join(':');
186 return new jsbn_1.BigInteger(this.parsedAddress.map((n) => (0, sprintf_js_1.sprintf)('%02x', parseInt(n, 10))).join(''), 16);
292 const reversed = this.correctForm().split('.').reverse().join('.');
322 return this.address.replace(constants.RE_ADDRESS, (0, sprintf_js_1.sprintf)('<span class="hover-group group-v4 group-6">%s</span>.<span class="hover-group group-v4 group-7">%s</span>', segments.slice(0, 2).join('.'), segments.slice(2, 4).join('.')));
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_lock/
H A Ds-c2.c31 * - join the thread
32 * -> When a create operation fails, broadcast the condition then join every threads.
202 /* If the child exists, join it now */ in threaded()
206 UNRESOLVED(ret, "Grandchild join failed"); in threaded()
338 /* Unable to create more threads, let's signal the cond and join the threads */ in main()
358 output("The children are terminating. We will join them.\n"); in main()
361 /* All the threads are terminating, we can join the children and destroy the testdata */ in main()
368 /* Join the thread from the current item */ in main()
371 UNRESOLVED(ret, "Unable to join a child"); in main()
/third_party/python/Lib/distutils/
H A Dsysconfig.py287 incdir = os.path.join(get_config_var('srcdir'), 'Include')
290 return os.path.join(prefix, "include", python_dir)
295 return (os.path.join(prefix, "include") + os.path.pathsep +
296 os.path.join(prefix, "PC"))
297 return os.path.join(prefix, "include")
332 libpython = os.path.join(prefix, libdir,
337 return os.path.join(libpython, "site-packages")
340 return os.path.join(prefix, "Lib")
342 return os.path.join(prefix, "Lib", "site-packages")

Completed in 14 milliseconds

1...<<11121314151617181920>>...256