Home
last modified time | relevance | path

Searched full:join (Results 101 - 125 of 8037) sorted by relevance

12345678910>>...322

/third_party/skia/infra/bots/assets/chromebook_x86_64_gles/
H A Dcreate.py44 lib_dir = os.path.join(target_dir, 'lib')
47 to_copy = glob.glob(os.path.join(gl_path,'libGL*'))
48 to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*')))
49 to_copy.extend(glob.glob(os.path.join(gl_path,'libdrm*')))
53 include_dir = os.path.join(target_dir, 'include')
55 shutil.copytree('/usr/include/EGL', os.path.join(include_dir, 'EGL'))
56 shutil.copytree('/usr/include/KHR', os.path.join(include_dir, 'KHR'))
57 shutil.copytree('/usr/include/GLES2', os.path.join(include_dir, 'GLES2'))
58 shutil.copytree('/usr/include/GLES3', os.path.join(include_dir, 'GLES3'))
/third_party/skia/infra/bots/assets/chromebook_arm_gles/
H A Dcreate.py44 lib_dir = os.path.join(target_dir, 'lib')
47 to_copy = glob.glob(os.path.join(gl_path,'libGL*'))
48 to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*')))
49 to_copy.extend(glob.glob(os.path.join(gl_path,'libmali*')))
53 include_dir = os.path.join(target_dir, 'include')
55 shutil.copytree('/usr/include/EGL', os.path.join(include_dir, 'EGL'))
56 shutil.copytree('/usr/include/KHR', os.path.join(include_dir, 'KHR'))
57 shutil.copytree('/usr/include/GLES2', os.path.join(include_dir, 'GLES2'))
58 shutil.copytree('/usr/include/GLES3', os.path.join(include_dir, 'GLES3'))
/third_party/node/deps/npm/lib/utils/
H A Derror-message.js8 const messageText = msg => msg.map(line => line.slice(1).join(' ')).join('\n')
66 ].join('\n'),
97 ].join('\n'),
114 ].join('\n'),
124 ['', 'Failed using git.', 'Please check if you have git installed and in your PATH.'].join(
142 ].join('\n'),
153 ].join('\n'),
168 ].join('\n'),
185 ['To correct this please try logging in again with:', ' npm login'].join('\
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A Dgenerate_gl_dispatch_table.py174 return '\n'.join(lines)
181 return '\n'.join(lines)
194 return '\n'.join([assign_null_line(line) for line in entry.split('\n')])
202 return "".join(param.itertext())
264 print(','.join(inputs))
266 print(','.join(outputs))
272 gl_xml_path = os.path.join('..', '..', '..', '..', 'scripts', 'gl.xml')
405 table_data.append("\n".join(formatted))
411 table_data="\n\n".join(table_data))
443 gl_data="\n\n".join(gl_dat
[all...]
/third_party/vk-gl-cts/external/
H A Dfetch_sources.py35 scriptPath = os.path.join(os.path.dirname(__file__), "..", "scripts")
57 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
59 readonlydir = os.path.join(fullDstPath, ".git")
88 archiveDir = os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir)
93 archiveFile = os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir, pkg.filename)
100 return os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir, "extracted")
137 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
150 srcPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
151 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % self.baseDir)
152 dstPath = os.path.join(EXTERNAL_DI
[all...]
/third_party/typescript/src/testRunner/
H A DexternalCompileRunner.ts50 let cwd = path.join(IO.getWorkspaceRoot(), cls.testDir, directoryName);
54 if (fs.existsSync(path.join(cwd, "test.json"))) {
55 const config = JSON.parse(fs.readFileSync(path.join(cwd, "test.json"), { encoding: "utf8" })) as UserConfig;
58 const submoduleDir = path.join(cwd, directoryName);
60 exec("git", ["--work-tree", submoduleDir, "clone", "-b", config.branch || "master", config.cloneUrl, path.join(submoduleDir, ".git")], { cwd });
63 exec("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "checkout", config.branch || "master"], { cwd: submoduleDir });
64 exec("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "reset", "HEAD", "--hard"], { cwd: submoduleDir });
65 exec("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "clean", "-f"], { cwd: submoduleDir });
66 exec("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "pull", "-f"], { cwd: submoduleDir });
71 cwd = config.path ? path.join(cw
[all...]
/third_party/node/benchmark/path/
H A Drelative-posix.js7 ['/data/orandea/test/aaa', '/data/orandea/impl/bbb'].join('|'),
8 ['/', '/var'].join('|'),
9 ['/', '/'].join('|'),
10 ['/var', '/bin'].join('|'),
11 ['/foo/bar/baz/quux', '/'].join('|'),
12 ['/foo/bar/baz/quux', '/foo/bar/baz/quux'].join('|'),
13 ['/foo/bar/baz/quux', '/var/log'].join('|'),
/third_party/typescript/tests/baselines/reference/
H A DtypeGuardsOnClassProperty.types22 return typeof data === "string" ? data : data.join(" ");
23 >typeof data === "string" ? data : data.join(" ") : string
29 >data.join(" ") : string
30 >data.join : (separator?: string) => string
32 >join : (separator?: string) => string
39 return typeof this.data === "string" ? this.data : this.data.join(" ");
40 >typeof this.data === "string" ? this.data : this.data.join(" ") : string
50 >this.data.join(" ") : string
51 >this.data.join : (separator?: string) => string
55 >join
[all...]
/third_party/python/Lib/distutils/tests/
H A Dtest_sdist.py7 from os.path import join namespace
64 os.mkdir(join(self.tmp_dir, 'somecode'))
65 os.mkdir(join(self.tmp_dir, 'dist'))
97 os.mkdir(join(self.tmp_dir, 'somecode', '.svn'))
100 os.mkdir(join(self.tmp_dir, 'somecode', '.hg'))
104 os.mkdir(join(self.tmp_dir, 'somecode', '.git'))
121 dist_folder = join(self.tmp_dir, 'dist')
125 zip_file = zipfile.ZipFile(join(dist_folder, 'fake-1.0.zip'))
151 dist_folder = join(self.tmp_dir, 'dist')
156 os.remove(join(dist_folde
[all...]
/test/xts/tools/lite/build/
H A Dsuite.py79 _out_file = os.path.join(_suite_out_file,
103 _config_file = os.path.join(_suite_out_file,
106 _config_file = os.path.join(_out_file,
129 module_info_list_file = os.path.join(module_info_dir,
181 ohos_dir = os.path.join(self.args.project_dir, 'plugins', 'ohos')
183 factory_script = os.path.join(self.args.project_dir, "factory.sh")
194 dist_dir = os.path.join(self.args.project_dir, 'dist')
195 ohos_dist_dir = os.path.join(ohos_dir, 'dist')
196 run_scripts = ",".join(
197 [os.path.join(sel
[all...]
/foundation/ability/idl_tool/test/hdi_unittest/base/
H A Dtest_base.py33 self.idl_dir = os.path.join(self.working_dir, "foo")
34 self.output_dir = os.path.join(self.working_dir, "out")
35 self.target_dir = os.path.join(self.working_dir, "target")
62 return os.path.realpath(os.path.join(current_path,
75 self.output_dir = os.path.join(self.working_dir, output_dir)
78 self.target_dir = os.path.join(self.working_dir, target_dir)
118 output_path = os.path.join(self.working_dir, "hash_out")
121 self.set_output_path(os.path.join(output_path, "hash.txt"))
123 self.set_target_dir(os.path.join(self.working_dir, "hash_target"))
133 output_path = os.path.join(sel
[all...]
/test/testfwk/developer_test/libs/fuzzlib/
H A Dfuzzer_helper.py51 SOURCE_OUT_DIR = os.path.join(SOURCE_ROOT_DIR, "out")
53 TDD_BUILD_GN_PATH = os.path.join(
79 return ' '.join(pipes.quote(part) for part in command)
94 project_yaml_path = os.path.join(
123 project_dir_path = os.path.join(args.project_path, args.project_name)
135 file_path = os.path.join(project_dir_path, 'project.xml')
141 file_path = os.path.join(project_dir_path, "%s.cpp" % args.project_name)
147 file_path = os.path.join(project_dir_path, "%s.h" % args.project_name)
152 file_path = os.path.join(project_dir_path, "BUILD.gn")
158 corpus_dir = os.path.join(project_dir_pat
[all...]
/third_party/node/deps/openssl/openssl/Configurations/
H A Dgentemplate.pm93 print STDERR "DEBUG[collectdepends] $thing > ", join(' ', @listsofar), "\n"
104 print STDERR "DEBUG[collectdepends] $thing < ", join(' ', @newlist), "\n"
115 print STDERR "DEBUG[expanddepends]> ", join(' ', @after), "\n"
120 print STDERR "DEBUG[expanddepends]\\ ", join(' ', @before), "\n"
142 print STDERR "DEBUG[expanddepends] = ", join(' ', @middle), "\n"
144 print STDERR "DEBUG[expanddepends]/ ", join(' ', @after), "\n"
148 print STDERR "DEBUG[expanddepends]< ", join(' ', @before), "\n"
157 print STDERR "DEBUG[reducedepends]> ", join(' ', @list), "\n"
176 print STDERR "DEBUG[reducedepends]< ", join(' ', @newlist), "\n"
187 print STDERR "DEBUG[resolvedepends] START (", join(', ',
[all...]
H A Dunix-Makefile.tmpl4 ## {- join("\n## ", @autowarntext) -}
64 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
76 LIBS={- join(" \\\n" . ' ' x 5,
80 SHLIBS={- join(" \\\n" . ' ' x 7,
84 SHLIB_INFO={- join(" \\\n" . ' ' x 11,
91 MODULES={- join(" \\\n" . ' ' x 8,
107 join(" ", map { platform->dso($_) } @fipsmodules) -}
109 join(" ", map { basename(platform->dso($_)) } @fipsmodules) -}
111 PROGRAMS={- join(" \\\n" . ' ' x 9,
115 SCRIPTS={- join(" \\\
[all...]
/third_party/openssl/Configurations/
H A Dgentemplate.pm93 print STDERR "DEBUG[collectdepends] $thing > ", join(' ', @listsofar), "\n"
104 print STDERR "DEBUG[collectdepends] $thing < ", join(' ', @newlist), "\n"
115 print STDERR "DEBUG[expanddepends]> ", join(' ', @after), "\n"
120 print STDERR "DEBUG[expanddepends]\\ ", join(' ', @before), "\n"
142 print STDERR "DEBUG[expanddepends] = ", join(' ', @middle), "\n"
144 print STDERR "DEBUG[expanddepends]/ ", join(' ', @after), "\n"
148 print STDERR "DEBUG[expanddepends]< ", join(' ', @before), "\n"
157 print STDERR "DEBUG[reducedepends]> ", join(' ', @list), "\n"
176 print STDERR "DEBUG[reducedepends]< ", join(' ', @newlist), "\n"
187 print STDERR "DEBUG[resolvedepends] START (", join(', ',
[all...]
H A Dunix-Makefile.tmpl4 ## {- join("\n## ", @autowarntext) -}
64 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
76 LIBS={- join(" \\\n" . ' ' x 5,
80 SHLIBS={- join(" \\\n" . ' ' x 7,
84 SHLIB_INFO={- join(" \\\n" . ' ' x 11,
91 MODULES={- join(" \\\n" . ' ' x 8,
107 join(" ", map { platform->dso($_) } @fipsmodules) -}
109 join(" ", map { basename(platform->dso($_)) } @fipsmodules) -}
111 PROGRAMS={- join(" \\\n" . ' ' x 9,
115 SCRIPTS={- join(" \\\
[all...]
/test/testfwk/developer_test/local_coverage/resident_service/
H A Dpull_service_gcda.py26 sys.localcoverage_path = os.path.join(current_path, "..")
43 origin_foundation = os.path.join(cfg_path, "foundation_origin.json")
65 local_sh_path = os.path.join(resident_service_path, "resources", "gcov_flush.sh")
81 home_path = '/'.join(roots_path.split("/")[:3])
86 gcov_root = os.path.join(gcda_path, 'out', product_name, component_gcda_path)
96 os.path.join(developertest_path, "reports/coverage/data/cxx",
101 tar_path = os.path.join(gcda_file_path, "%s.tar.gz" % gcda_file_name)
106 local_tar = os.path.join(local_gcda_path, "%s.tar.gz" % gcda_file_name)
142 developer_test_path = os.path.join(root_path, "test/testfwk/developer_test")
143 service_path = os.path.join(
[all...]
/third_party/node/test/parallel/
H A Dtest-fs-append-file.js26 const join = require('path').join;
46 const filename = join(tmpdir.path, 'append.txt');
57 const filename = join(tmpdir.path, 'append-promise.txt');
69 const filename = join(tmpdir.path, 'append-non-empty.txt');
82 const filename = join(tmpdir.path, 'append-non-empty-promise.txt');
96 const filename = join(tmpdir.path, 'append-buffer.txt');
110 const filename = join(tmpdir.path, 'append-buffer-promises.txt');
129 const filename = join(tmpdir.path, 'append-invalid-data.txt');
157 const filename = join(tmpdi
[all...]
/third_party/node/deps/npm/docs/lib/
H A Dindex.js2 const { join, basename, resolve } = require('path')
61 usage: usage.map(u => `${usagePrefix} ${u}`.trim()).join('\n'),
83 synopsis.push('', `aliases: ${cmdAliases.join(', ')}`)
92 return src.replace(replacer, synopsis.join('\n'))
105 return src.replace(replacer, paramsConfig.join('\n\n'))
123 .join('\n\n')
134 localeCompare(expansiona.join(' '), expansionb.join(' ')) || localeCompare(shorta, shortb)
140 return `* \`${dash}${short}\`: \`${expansion.join(' ')}\``
143 return src.replace(replacer, sh.join('\
[all...]
/test/testfwk/developer_test/src/core/driver/
H A Ddrivers.py105 content = "".join((self.unfinished_line, content))
125 log_path = os.path.join(report_path, Variables.report_vars.log_dir)
130 device_log_file = os.path.join(log_path, device_file_name)
155 result_path = os.path.join(result_rootpath, "result", subpath)
157 result_path = os.path.join(result_rootpath, "result")
159 result_path = os.path.join(result_rootpath, "result")
170 test_log_path = os.path.join(result_rootpath, "log", "test_log", suit_path)
190 crash_path = os.path.join(log_path, "log", test_suit)
194 matching_dirs = [os.path.join(crash_path, item) for item in all_items if
195 os.path.isdir(os.path.join(crash_pat
[all...]
/test/testfwk/developer_test/src/core/command/
H A Drun.py61 target_out_path = os.path.join(
102 testcase_path = os.path.abspath(os.path.join(
106 testcase_path = os.path.abspath(os.path.join(
110 testcase_path = os.path.join(
119 xts_testcase_path = os.path.abspath(os.path.join(
129 external_deps_path = os.path.abspath(os.path.join(
156 current_raw_cmd = ",".join(list(map(str, options.current_raw_cmd.split(" "))))
159 push_cov_path = os.path.join(sys.framework_root_dir, "local_coverage/push_coverage_so/push_coverage.py")
177 init_gcov_path = os.path.join(sys.framework_root_dir, "local_coverage/resident_service/init_gcov.py")
264 latest_report_path = os.path.join(Variable
[all...]
/third_party/python/Lib/test/
H A Dtest_venv.py91 return os.path.join(self.env_dir, *args)
214 os.path.join(fake_env_dir, bin_path, python_exe)
246 envpy = os.path.join(self.env_dir, self.bindir, self.exe)
264 envpy = os.path.join(self.env_dir, self.bindir, self.exe)
287 envpy = os.path.join(self.env_dir, self.bindir, self.exe)
324 d = os.path.join(self.env_dir, *subdirs)
326 fn = os.path.join(d, filename)
337 fn = os.path.join(self.env_dir, *(subdirs + ('foo',)))
345 fn = os.path.join(self.env_dir, *(subdirs + ('foo',)))
350 fn = os.path.join(pat
[all...]
/third_party/node/deps/v8/third_party/inspector_protocol/lib/
H A DValueConversions_h.template7 #ifndef {{"_".join(config.protocol.namespace)}}_ValueConversions_h
8 #define {{"_".join(config.protocol.namespace)}}_ValueConversions_h
285 typename std::enable_if<std::is_base_of<{{"::".join(config.protocol.namespace)}}::Value, T>::value>::type> {
286 static void Serialize(const {{"::".join(config.protocol.namespace)}}::Value& value, std::vector<uint8_t>* bytes) {
292 struct ProtocolTypeTraits<std::unique_ptr<{{"::".join(config.protocol.namespace)}}::Value>> {
293 static bool Deserialize(DeserializerState* state, std::unique_ptr<{{"::".join(config.protocol.namespace)}}::Value>* value);
294 static void Serialize(const std::unique_ptr<{{"::".join(config.protocol.namespace)}}::Value>& value, std::vector<uint8_t>* bytes);
298 struct ProtocolTypeTraits<std::unique_ptr<{{"::".join(config.protocol.namespace)}}::DictionaryValue>> {
299 static bool Deserialize(DeserializerState* state, std::unique_ptr<{{"::".join(config.protocol.namespace)}}::DictionaryValue>* value);
300 static void Serialize(const std::unique_ptr<{{"::".join(confi
[all...]
/third_party/node/deps/v8/tools/vim/
H A Dninja_output.py31 os.path.isdir(os.path.join(v8_root, name_value[1]))):
36 return os.path.join(os.path.join(v8_root, output_dir), configuration)
41 if os.path.isdir(os.path.join(v8_root, f)):
46 out_path = os.path.join(v8_root, out_dir)
48 path = os.path.join(out_path, config)
49 if os.path.exists(os.path.join(path, 'build.ninja')):
54 paths = [path] + [os.path.join(path, f) for f in os.listdir(path)]
/third_party/skia/infra/bots/recipe_modules/doxygen/resources/
H A Dgenerate_and_upload_doxygen.py19 WORKDIR = os.path.join(os.pardir, 'doxygen_workdir')
20 DOXYGEN_CONFIG_DIR = os.path.join(WORKDIR, 'doxygen-config')
21 DOXYGEN_WORKING_DIR = os.path.join(WORKDIR, 'doxygen')
22 DOXYGEN_GS_PATH = '/'.join(['gs://skia-doc', 'doxygen'])
46 static_footer_path = os.path.join(DOXYGEN_WORKING_DIR, 'static_footer.txt')
47 shutil.copyfile(os.path.join('tools', 'doxygen_footer.txt'),
53 modified_doxyfile = os.path.join(DOXYGEN_CONFIG_DIR, DOXYFILE_BASENAME)
62 with open(os.path.join(DOXYGEN_WORKING_DIR, 'iframe_footer.html'), 'w') as f:

Completed in 29 milliseconds

12345678910>>...322