/third_party/ltp/testcases/network/multicast/mc_member/ |
H A D | mc_member.sh | 65 # Join twice and leave once and see if the groups are still 73 grep "cannot join group" $ERRFILE 75 tst_brkm TFAIL "MC group could NOT join "\ 83 grep "cannot join group" $ERRFILE 85 tst_brkm TFAIL "MC group could NOT join "\ 119 tst_brkm TFAIL "Could not join members!"
|
/third_party/python/Tools/scripts/ |
H A D | generate_token.py | 98 ''.join(defines), 159 return ''.join(result) 181 ''.join(names), 209 if update_file(outfile, token_inc_template % '\n'.join(names)): 257 '\n'.join(constants), 260 '\n'.join(token_types),
|
H A D | highlight.py | 20 'Join content from a range of lines between start and end' 25 return ''.join(rows), end 73 return ''.join(result) 95 return ''.join(result) 109 return ''.join(result) 142 css_str = '\n'.join(['%s %s' % item for item in css.items()]) 185 macros = '\n'.join(r'\newcommand{\py%s}[1]{%s}' % c for c in commands.items()) 193 return default_latex_document % dict(title=title, macros=macros, body=''.join(result))
|
/third_party/skia/third_party/externals/angle2/src/compiler/ |
H A D | generate_parser_tools.py | 20 exe_path = os.path.join(sys.path[0], '..', '..', '..', 'tools', 'flex-bison', platform) 22 return os.path.join(exe_path, tool_name) 124 return [os.path.join(sys.path[0], f) for f in files] 130 return [os.path.join(sys.path[0], f) for f in files] 143 print(','.join(inputs)) 145 print(','.join(get_output_files(basename, generate_header)))
|
/third_party/skia/third_party/externals/angle2/infra/specs/ |
H A D | generate_test_spec_json.py | 19 TESTING_BBOT_DIR = os.path.join(d(d(THIS_DIR)), 'testing', 'buildbot') 65 MIXIN_FILE_NAME = os.path.join(THIS_DIR, 'mixins.pyl') 88 gen_bb_json = os.path.join(TESTING_BBOT_DIR, 'generate_buildbot_json.py') 89 mixins_pyl = os.path.join(TESTING_BBOT_DIR, 'mixins.pyl') 96 print(','.join(inputs)) 98 print(','.join(outputs))
|
/third_party/vk-gl-cts/external/openglcts/scripts/ |
H A D | build_caselists.py | 30 scriptPath = os.path.join(os.path.dirname(__file__), "..", "..", "..", "scripts") 94 DEFAULT_BUILD_DIR = os.path.join(tempfile.gettempdir(), "deqp-caselists", "{targetName}-{buildType}") 112 return os.path.join(buildCfg.getBuildDir(), GLCTS_DIR_NAME) 123 return os.path.join(workDir, getCaseListFileName(module, caseListType)) 131 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", GLCTS_BIN_NAME)) 139 dstPath = os.path.join(dstDir, caseListFile)
|
/third_party/skia/tests/ |
H A D | EmptyPathTest.cpp | 49 ERRORF(reporter, "%s style[%d] cap[%d] join[%d] antialias[%d]" in drawAndTest() 70 static const SkPaint::Join gJoins[] = { in iter_paint() 81 for (size_t join = 0; join < SK_ARRAY_COUNT(gJoins); ++join) { in iter_paint() 92 paint.setStrokeJoin(gJoins[join]); in iter_paint()
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/text-rendering-tests/ |
H A D | update.py | 16 return ','.join('U+%04X' % ord(c) for c in s) 25 return '[' + '|'.join (out) + ']' 45 glyphname = '.'.join (href[1:].split ('/')[1].split ('.')[1:]) 64 return '\n'.join (result) + '\n' 102 with open ('meson.build', 'w') as f: f.write ('\n'.join ( 110 with open ('Makefile.sources', 'w') as f: f.write ('\n'.join (
|
/third_party/skia/third_party/externals/harfbuzz/test/subset/ |
H A D | run-tests.py | 27 print (hb_subset + ' ' + " ".join(command)) 28 process.stdin.write ((';'.join (command) + '\n').encode ("utf-8")) 46 expected_file = os.path.join (test_suite.get_output_directory (), 52 out_file = os.path.join (tempfile.mkdtemp (), test.get_font_name () + '-subset' + test.get_font_extension ()) 62 return fail_test (test, cli_args, "%s failed" % ' '.join (cli_args)) 64 expected_file = os.path.join (test_suite.get_output_directory (), test.get_font_name ())
|
/third_party/toybox/scripts/ |
H A D | mkstatus.py | 49 if unknowns: print "uncategorized: %s" % " ".join(unknowns) 105 outfile.write("<a name=done><h2><a href=#done>Completed</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(done)) 106 outfile.write("<a name=part><h2><a href=#part>Partially implemented</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(pend)) 107 outfile.write("<a name=todo><h2><a href=#todo>Not started yet</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(todo)) 128 outfile.write(" ".join(todo)) 131 outfile.write("<hr><a name=all><h2><a href=#all>All commands together in one big list</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(allcmd))
|
/third_party/typescript/tests/baselines/reference/ |
H A D | declFileFunctions.js | 14 return a + rests.join(""); 51 return a + rests.join(""); 71 return a + rests.join(""); 99 return a + rests.join("");
144 return a + rests.join("");
164 return a + rests.join("");
|
/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')
|
/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)
|
/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/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/test/parallel/ |
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/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))
|
/third_party/rust/crates/clang-sys/build/ |
H A D | dynamic.rs | 146 let path = directory.join(&filename); in search_libclang_directories() 168 .join(", "), in search_libclang_directories() 169 invalid.join(", "), in search_libclang_directories() 220 directory.parent().unwrap().join("lib") in link() 223 if lib.join("libclang.lib").exists() { in link() 225 } else if lib.join("libclang.dll.a").exists() { in link() 233 lib.join("libclang.dll.a"), in link() 234 Path::new(&out).join("libclang.lib"), in link()
|
/third_party/python/Lib/test/support/ |
H A D | script_helper.py | 220 script_name = os.path.join(script_dir, script_filename) 230 zip_name = os.path.join(zip_dir, zip_filename) 245 return zip_name, os.path.join(zip_name, name_in_zip) 265 pkg_names = [os.sep.join([pkg_name]*i) for i in range(1, depth+1)] 266 script_name_in_zip = os.path.join(pkg_names[-1], os.path.basename(script_name)) 268 zip_name = os.path.join(zip_dir, zip_filename) 271 init_name_in_zip = os.path.join(name, init_basename) 280 return zip_name, os.path.join(zip_name, script_name_in_zip)
|
/third_party/skia/gm/ |
H A D | cubicpaths.cpp | 127 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, in drawPath() 134 paint.setStrokeJoin(join); in drawPath() 165 SkPaint::Join fJoin; 246 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, in drawPath() 253 paint.setStrokeJoin(join); in drawPath() 284 SkPaint::Join fJoin; 126 drawPath(SkPath& path,SkCanvas* canvas,SkColor color, const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, SkPaint::Style style, SkPathFillType fill, SkScalar strokeWidth) drawPath() argument 245 drawPath(SkPath& path,SkCanvas* canvas,SkColor color, const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, SkPaint::Style style, SkPathFillType fill, SkScalar strokeWidth) drawPath() argument
|
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_canvas/ |
H A D | perf_puppeteer_canvas.go | 87 outputFile := filepath.Join(outputAbsPath, fmt.Sprintf("perf-%s.json", *taskID)) 120 if _, err := exec.RunCwd(ctx, benchmarkPath, filepath.Join(nodeBinPath, "npm"), "ci"); err != nil { 124 if err := os.MkdirAll(filepath.Join(benchmarkPath, "out"), 0777); err != nil { 137 args := []string{filepath.Join(nodeBinPath, "node"), 140 "--canvaskit_js", filepath.Join(canvaskitBinPath, "canvaskit.js"), 141 "--canvaskit_wasm", filepath.Join(canvaskitBinPath, "canvaskit.wasm"), 143 "--output", filepath.Join(benchmarkPath, "out", "perf.json"), 188 perfJSONPath := filepath.Join(benchmarkPath, "out", "perf.json")
|
/third_party/ltp/ |
H A D | execltp.in | 220 output_dest.write('\n'.join(['', '=' * 40, header, '-' * 40, ''])) 300 opts.log_dir = os.path.join(opts.ltp_dir, 'output') 310 fd = open(os.path.join(ltpdir, 'scenario_groups/default'), 'r') 334 opts.output_file = os.path.join(os.getcwd(), opts.output_file) 358 exec_log = os.path.join(opts.log_dir, '%s-exec.log' % testsuite) 359 output_log = os.path.join(opts.log_dir, ('%s-output.log' 364 runtest_file = os.path.join(opts.ltp_dir, 'runtest', testsuite) 377 os.system(' '.join([os.path.join(opts.ltp_dir, 'runltp'), 465 """ % (' '.join(arg [all...] |
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/ |
H A D | v8_foozzie_test.py | 25 FOOZZIE = os.path.join(BASE_DIR, 'v8_foozzie.py') 26 TEST_DATA = os.path.join(BASE_DIR, 'testdata') 240 return '\n'.join(stdout.split('\n')[n_comp * 2:]) 253 '--first-d8', os.path.join(TEST_DATA, 'baseline', 'd8.py'), 254 '--second-d8', os.path.join(TEST_DATA, second_d8_dir, 'd8.py'), 257 os.path.join(TEST_DATA, 'fuzz-123.js'), 283 with open(os.path.join(TEST_DATA, 'failure_output.txt')) as f: 295 with open(os.path.join(TEST_DATA, 'smoke_test_output.txt')) as f: 319 with open(os.path.join(TEST_DATA, 'failure_output_arch.txt')) as f: 334 with open(os.path.join(TEST_DAT [all...] |