Home
last modified time | relevance | path

Searched full:join (Results 51 - 75 of 6295) sorted by relevance

12345678910>>...252

/third_party/skia/infra/bots/assets/svg/
H A Dcreate.py19 INFRA_BOTS_DIR = os.path.realpath(os.path.join(FILE_DIR, os.pardir, os.pardir))
20 SVG_TOOLS = os.path.join(INFRA_BOTS_DIR, os.pardir, os.pardir, 'tools', 'svg')
27 target_svg_dir = os.path.join(target_dir, 'svg')
28 target_image_dir = os.path.join(target_dir, 'images')
38 'python', os.path.join(SVG_TOOLS, 'svg_downloader.py'),
40 '--input_file', os.path.join(SVG_TOOLS, 'svgs.txt'),
46 'python', os.path.join(SVG_TOOLS, 'svg_downloader.py'),
48 '--input_file', os.path.join(SVG_TOOLS, 'svgs_parse_only.txt'),
55 'python', os.path.join(SVG_TOOLS, 'svg_downloader.py'),
57 '--input_file', os.path.join(SVG_TOOL
[all...]
/third_party/node/test/parallel/
H A Dtest-fs-mkdtemp.js19 const tmpFolder = fs.mkdtempSync(path.join(tmpdir.path, 'foo.'));
24 const utf8 = fs.mkdtempSync(path.join(tmpdir.path, '\u0222abc.'));
29 fs.mkdtemp(path.join(tmpdir.path, 'bar.'), common.mustCall(handler));
33 fs.mkdtemp(path.join(tmpdir.path, 'bar.'), {}, common.mustCall(handler));
38 fs.mkdtemp(path.join(tmpdir.path, 'bar.X'), common.mustCall(handler));
65 const tmpFolder = fs.mkdtempSync(Buffer.from(path.join(tmpdir.path, 'foo.')));
70 const utf8 = fs.mkdtempSync(Buffer.from(path.join(tmpdir.path, '\u0222abc.')));
75 fs.mkdtemp(Buffer.from(path.join(tmpdir.path, 'bar.')), common.mustCall(handler));
79 fs.mkdtemp(Buffer.from(path.join(tmpdir.path, 'bar.')), {}, common.mustCall(handler));
82 fs.mkdtemp(Buffer.from(path.join(tmpdi
[all...]
H A Dtest-path-join.js10 [ [path.posix.join, path.win32.join],
63 // Windows-specific join tests
65 path.win32.join,
119 test[0].forEach((join) => {
121 const actual = join.apply(null, test[0]);
123 // For non-Windows specific tests with the Windows join(), we need to try
128 if (join === path.win32.join) {
135 const delimiter = test[0].map(JSON.stringify).join(',');
[all...]
/third_party/node/deps/v8/third_party/inspector_protocol/templates/
H A DImported_h.template7 #ifndef {{"_".join(config.protocol.namespace)}}_{{domain.domain}}_imported_h
8 #define {{"_".join(config.protocol.namespace)}}_{{domain.domain}}_imported_h
17 #ifndef {{"_".join(config.protocol.namespace)}}_imported_imported_h
25 std::is_base_of<{{"::".join(config.imported.namespace)}}::Exported, T>::value>::type> {
52 std::is_base_of<{{"::".join(config.imported.namespace)}}::Exported, T>::value>::type> {
62 #endif // {{"_".join(config.protocol.namespace)}}_imported_imported_h
68 using Exported = {{"::".join(config.imported.namespace)}}::Exported;
70 #ifndef {{"_".join(config.protocol.namespace)}}_imported_imported_h
71 #define {{"_".join(config.protocol.namespace)}}_imported_imported_h
92 #endif // !defined({{"_".join(confi
[all...]
/third_party/python/Tools/freeze/test/
H A Dfreeze.py14 FREEZE = os.path.join(TOOL_ROOT, 'freeze.py')
15 OUTDIR = os.path.join(TESTS_DIR, 'outdir')
23 #print(f'# {" ".join(shlex.quote(a) for a in cmd)}')
96 if os.path.exists(os.path.join(newroot, 'Makefile')):
102 filename = os.path.join(builddir, 'Makefile')
117 python = os.path.join(builddir, 'python')
138 scriptfile = os.path.join(outdir, 'app.py')
145 srcdir = os.path.join(outdir, 'cpython')
149 builddir = os.path.join(outdir, 'python-build')
155 os.path.join(srcdi
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdeclFileFunctions.types24 return a + rests.join("");
25 >a + rests.join("") : string
27 >rests.join("") : string
28 >rests.join : (separator?: string) => string
30 >join : (separator?: string) => string
116 return a + rests.join("");
117 >a + rests.join("") : string
119 >rests.join("") : string
120 >rests.join : (separator?: string) => string
122 >join
[all...]
H A DdeclFileConstructors.types33 return a + rests.join("");
34 >a + rests.join("") : string
36 >rests.join("") : string
37 >rests.join : (separator?: string) => string
39 >join : (separator?: string) => string
123 return a + rests.join("");
124 >a + rests.join("") : string
126 >rests.join("") : string
127 >rests.join : (separator?: string) => string
129 >join
[all...]
H A DundeclaredModuleError.types19 function join(...paths: string[]) {}
20 >join : (...paths: string[]) => void
30 >fs.readFile(originalFilePath, () => { readdir(covFileDir, () => { } , (error: Error, files: {}[]) => { files.forEach((file) => { var fullPath = join(IDoNotExist); } ); } ); } ) : any
35 >() => { readdir(covFileDir, () => { } , (error: Error, files: {}[]) => { files.forEach((file) => { var fullPath = join(IDoNotExist); } ); } ); } : () => void
38 >readdir(covFileDir, () => { } , (error: Error, files: {}[]) => { files.forEach((file) => { var fullPath = join(IDoNotExist); } ); } ) : void
44 >(error: Error, files: {}[]) => { files.forEach((file) => { var fullPath = join(IDoNotExist); } ); } : (error: Error, files: {}[]) => void
49 >files.forEach((file) => { var fullPath = join(IDoNotExist); } ) : void
53 >(file) => { var fullPath = join(IDoNotExist); } : (file: {}) => void
56 var fullPath = join(IDoNotExist);
58 >join(IDoNotExis
[all...]
/third_party/node/tools/inspector_protocol/templates/
H A DImported_h.template7 #ifndef {{"_".join(config.protocol.namespace)}}_{{domain.domain}}_imported_h
8 #define {{"_".join(config.protocol.namespace)}}_{{domain.domain}}_imported_h
21 using Exported = {{"::".join(config.imported.namespace)}}::Exported;
23 #ifndef {{"_".join(config.protocol.namespace)}}_imported_imported_h
24 #define {{"_".join(config.protocol.namespace)}}_imported_imported_h
49 #endif // !defined({{"_".join(config.protocol.namespace)}}_imported_imported_h)
55 struct ValueConversions<{{"::".join(config.imported.namespace)}}::{{domain.domain}}::API::{{type.id}}> {
56 static std::unique_ptr<{{"::".join(config.imported.namespace)}}::{{domain.domain}}::API::{{type.id}}> fromValue(protocol::Value* value, ErrorSupport* errors)
65 auto result = {{"::".join(config.imported.namespace)}}::{{domain.domain}}::API::{{type.id}}::fromBinary(binary.data(), binary.size());
71 static std::unique_ptr<protocol::Value> toValue(const {{"::".join(confi
[all...]
/third_party/node/test/fixtures/
H A Drequire-resolve.js5 const nodeModules = path.join(__dirname, 'node_modules');
6 const nestedNodeModules = path.join(__dirname, 'node_modules', 'node_modules');
7 const nestedIndex = path.join(__dirname, 'nested-index');
12 path.join(nodeModules, 'bar.js')
37 path.join(nodeModules, 'bar.js')
48 path.join(nodeModules, 'bar.js')
54 path.join(nodeModules, 'bar.js')
65 path.join(nestedIndex, 'three.js')
71 path.join(nestedIndex, 'three.js')
78 path.join(nestedInde
[all...]
/third_party/node/deps/npm/test/lib/commands/
H A Dview.js287 t.matchSnapshot(outputs.join('\n'))
293 t.matchSnapshot(outputs.join('\n'))
299 t.matchSnapshot(outputs.join('\n'))
305 t.matchSnapshot(outputs.join('\n'))
311 t.matchSnapshot(outputs.join('\n'))
317 t.matchSnapshot(outputs.join('\n'))
323 t.matchSnapshot(outputs.join('\n'))
329 t.equal(outputs.join('\n'), '', 'no info to display')
335 t.matchSnapshot(outputs.join('\n'))
341 t.matchSnapshot(outputs.join('\
[all...]
H A Dlogout.js5 const { join } = require('path')
13 ].join('\n'),
25 const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
40 ].join('\n'),
53 const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
64 ].join('\n'),
75 const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
100 ].join('\n'),
113 const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
123 ].join('\
[all...]
H A Dconfig.js1 const { join } = require('path')
47 const global = join(temp, 'global')
48 const project = join(temp, 'project')
49 const home = join(temp, 'home')
69 const global = join(temp, 'global')
70 const project = join(temp, 'project')
71 const home = join(temp, 'home')
91 const global = join(temp, 'global')
92 const project = join(temp, 'project')
93 const home = join(tem
[all...]
/third_party/skia/src/gpu/tessellate/
H A DStrokeHardwareTessellator.cpp55 kBowtie = SkPaint::kLast_Join + 1 // Double sided round join.
78 // Will a line and worst-case previous join both fit in a single patch together?
88 // worst-case join fit in a single patch together?
98 // worst-case join fit in a single patch together?
103 void updateTolerances(float numRadialSegmentsPerRadian, SkPaint::Join joinType) { in updateTolerances()
119 // Find the worst-case numbers of parametric segments if we are to integrate a join into the in updateTolerances()
130 // join with the patch. Subtract an extra 1 off the end because when we integrate a join, in updateTolerances()
131 // the tessellator has to add a redundant edge between the join and curve. in updateTolerances()
158 // Writes out the given line, possibly chopping its previous join unti
[all...]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework_c.py28 scriptPath = os.path.join(os.path.dirname(__file__), "..", "..", "..", "scripts")
34 VULKAN_HEADERS_INCLUDE_DIR = os.path.join(os.path.dirname(__file__), "..", "..", "vulkan-docs", "src", "include")
35 VULKAN_H = { "" : [ os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codecs_common.h"),
36 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std.h"),
37 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std_encode.h"),
38 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h265std.h"),
39 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std_decode.h"),
40 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h265std_decode.h"),
41 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vulkan", "vulkan_core.h") ],
42 "SC" : [ os.path.join(o
[all...]
H A Dohos_gen_framework_c.py29 sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "..", "scripts"))
34 VULKAN_HEADERS_INCLUDE_DIR = os.path.join(os.path.dirname(__file__), "..", "..", "vulkan-docs", "src", "include")
35 VULKAN_H = { "" : [ os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codecs_common.h"),
36 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std.h"),
37 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std_encode.h"),
38 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h265std.h"),
39 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h264std_decode.h"),
40 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vk_video", "vulkan_video_codec_h265std_decode.h"),
41 os.path.join(VULKAN_HEADERS_INCLUDE_DIR, "vulkan", "vulkan_core.h") ],
42 "SC" : [ os.path.join(o
[all...]
/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/restore/
H A Dmedia_library_db_upgrade.h70 LEFT JOIN album_plugin \
89 INNER JOIN Photos \
178 INNER JOIN temp_album_bundle_name AS M \
180 LEFT JOIN PhotoAlbum AS PA2 \
182 LEFT JOIN album_plugin \
195 INNER JOIN temp_album_bundle_name AS M \
197 INNER JOIN PhotoAlbum AS PA2 \
199 INNER JOIN PhotoMap AS PM \
205 INNER JOIN temp_album_bundle_name AS M \
207 INNER JOIN PhotoMa
[all...]
/third_party/python/Lib/test/
H A Dtest_pkgutil.py38 package_dir = os.path.join(self.dirname, pkg)
41 f = open(os.path.join(package_dir, '__init__.py'), "wb")
44 f = open(os.path.join(package_dir, 'res.txt'), "wb")
47 os.mkdir(os.path.join(package_dir, 'sub'))
48 f = open(os.path.join(package_dir, 'sub', 'res.txt'), "wb")
68 zip_file = os.path.join(self.dirname, zip)
104 zip_file = os.path.join(self.dirname, zip)
137 d = os.path.join(self.dirname, package_name)
147 pkg1_dir = os.path.join(self.dirname, pkg1)
149 f = open(os.path.join(pkg1_di
[all...]
/base/security/selinux_adapter/scripts/
H A Dbuild_contexts.py48 cmdstr = " ".join(in_cmd)
68 file_list_path = os.path.join(root, each_file)
75 return " ".join(str(x) for x in policy_file_list)
92 print("".join((contexts_file, " : need an empty line at end \n")))
96 print("".join((contexts_file, " : must be unix format\n")))
145 err_msg = "".join(str_seq)
148 err_msg = "".join(str_seq)
150 err_msg = "".join(str_seq)
165 check_cmd = [os.path.join(args.tool_path, "sefcontext_compile"),
230 check_cmd = [os.path.join(arg
[all...]
/third_party/vk-gl-cts/scripts/
H A Drun_internal_tests.py84 testWorkDir = os.path.join(config.buildPath, "modules", "internal")
85 junitToolPath = os.path.join(config.buildPath, 'executor', config.junitTool)
99 os.path.join(config.buildPath, 'executor', config.executor),
101 '--start-server=%s' % os.path.join(config.buildPath, 'execserver', config.execserver),
105 '--caselistdir=%s' % os.path.join(testWorkDir),
115 SRC_PATH = os.path.normpath(os.path.join(os.path.dirname(__file__), ".."))
116 BASE_BUILD_PATH = os.path.normpath(os.path.join(SRC_PATH, "..", "de-internal-tests"))
122 os.path.join(BASE_BUILD_PATH, "win32-vs10-debug"),
133 os.path.join(BASE_BUILD_PATH, "win32-vs10-release"),
144 os.path.join(BASE_BUILD_PAT
[all...]
/third_party/python/Lib/distutils/tests/
H A Dtest_dep_util.py15 new_file = os.path.join(tmpdir, 'new')
33 sources = os.path.join(tmpdir, 'sources')
34 targets = os.path.join(tmpdir, 'targets')
37 one = os.path.join(sources, 'one')
38 two = os.path.join(sources, 'two')
40 four = os.path.join(targets, 'four')
50 sources = os.path.join(tmpdir, 'sources')
52 one = os.path.join(sources, 'one')
53 two = os.path.join(sources, 'two')
54 three = os.path.join(source
[all...]
/third_party/gn/infra/recipes/
H A Dgn.py42 str(api.macos_sdk.sdk_dir.join('include', 'c++', 'v1')),
57 sysroot = '--sysroot=%s' % cipd_dir.join('sysroot-focal')
59 sysroot = '--sysroot=%s' % cipd_dir.join('sysroot')
61 'CC': cipd_dir.join('bin', 'clang'),
62 'CXX': cipd_dir.join('bin', 'clang++'),
63 'AR': cipd_dir.join('bin', 'llvm-ar'),
74 stdlib = cipd_dir.join('lib', 'libc++.a')
78 cipd_dir.join('bin', 'clang'),
80 cipd_dir.join('bin', 'clang++'),
82 cipd_dir.join('bi
[all...]
/third_party/jerryscript/tests/jerry/
H A Darray-prototype-tostring.js15 // Our own join method if the internal join is not implemented.
16 function join(sep) function
32 Array.prototype.join = 1;
36 Array.prototype.join = join;
41 test.join = function() { throw ReferenceError ("foo"); };
53 // Test if the join returns a ReferenceError
55 Object.defineProperty(arr, 'join', { 'get' : function () {throw new ReferenceError ("foo"); } });
/base/security/selinux_adapter/scripts/selinux_check/
H A Dselinux_check_main.py31 request_args.append(os.path.join(args.output_path, "file_contexts"))
34 request_args.append(os.path.join(args.output_path, "all.cil"))
36 request_args.append(os.path.join(args.output_path, "developer/all.cil"))
41 check_policy_cmd = [os.path.join(args.tool_path, "checkpolicy"),
44 "-o", os.path.join(args.output_path, "all.cil")]
46 check_policy_cmd = [os.path.join(args.tool_path, "checkpolicy"),
49 "-o", os.path.join(args.output_path, "developer/all.cil")]
61 path = os.path.join(args.source_root_dir, i)
87 check_config = read_json_file(os.path.join(input_args.source_root_dir, input_args.selinux_check_config))
90 script = os.path.join(input_arg
[all...]
/third_party/skia/third_party/externals/brotli/python/tests/
H A D_test_utils.py12 project_dir = os.path.abspath(os.path.join(__file__, '..', '..', '..'))
13 src_dir = os.path.join(project_dir, 'python')
14 test_dir = os.path.join(project_dir, 'tests')
17 bro_path = os.path.join(src_dir, 'bro.py')
24 build_dir = os.path.join(project_dir, 'bin', platform_lib_name)
35 TESTDATA_DIR = os.path.join(test_dir, 'testdata')
45 TESTDATA_PATHS = [os.path.join(TESTDATA_DIR, f) for f in TESTDATA_FILES]
48 os.path.join(TESTDATA_DIR, '*.compressed'))
54 return os.path.join(TEMP_DIR, os.path.basename(filename + '.bro'))
58 return os.path.join(TEMP_DI
[all...]

Completed in 10 milliseconds

12345678910>>...252