/freebsd/crypto/openssl/Configurations/ |
H A D | windows-makefile.tmpl | 4 ## {- join("\n## ", @autowarntext) -} 50 LIBS={- join(" ", map { ( platform->sharedlib_import($_), platform->staticlib($_) ) } @{$unified_in… 51 SHLIBS={- join(" ", map { platform->sharedlib($_) // () } @{$unified_info{libraries}}) -} 52 SHLIBPDBS={- join(" ", map { platform->sharedlibpdb($_) // () } @{$unified_info{libraries}}) -} 60 join(" ", @MODULES) -} 61 MODULEPDBS={- join(" ", map { platform->dsopdb($_) } @{$unified_info{modules}}) -} 69 join(" ", map { platform->dso($_) } @fipsmodules) -} 71 join(", ", map { basename(platform->dso($_)) } @fipsmodules) -} 72 PROGRAMS={- our @PROGRAMS = map { platform->bin($_) } @{$unified_info{programs}}; join(" ", @PROGRA… 73 PROGRAMPDBS={- join(" ", map { $_.".pdb" } @{$unified_info{programs}}) -} [all …]
|
H A D | descrip.mms.tmpl | 3 ## {- join("\n## ", @autowarntext) -} 108 join(',', @{$target{lib_defines}}, @{$target{shared_defines}}, 118 join(' ', $target{lib_asflags} || (), @{$config{lib_asflags}}, 121 join('', $target{lib_cppflags} || (), $target{shared_cppflags} || (), 129 our $lib_cflags = join('', @lib_cflags, @lib_cflags_cont ); 130 our $lib_cflags_no_inst = join('', @lib_cflags_no_inst, @lib_cflags_cont ); 132 join('', $target{lib_lflags} || (), $target{shared_ldflag} || (), 135 our $lib_ex_libs = join('', @cnf_ex_libs, '$(EX_LIBS)'); 144 join(',', @{$target{dso_defines}}, @{$target{module_defines}}, 151 join(' ', $target{dso_asflags} || (), $target{module_asflags} || (), [all …]
|
H A D | unix-Makefile.tmpl | 4 ## {- 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(" \\\n" . ' ' x 8, [all …]
|
/freebsd/sys/contrib/libsodium/packaging/dotnet-core/ |
H A D | prepare.py | 51 self.builddir = os.path.join(BUILDDIR, libsodium_version) 52 self.tempdir = os.path.join(TEMPDIR, libsodium_version) 53 self.projfile = os.path.join(self.builddir, '{0}.{1}.pkgproj'.format(PACKAGE, package_version)) 54 self.propsfile = os.path.join(self.builddir, '{0}.props'.format(PACKAGE)) 55 self.pkgfile = os.path.join(BUILDDIR, '{0}.{1}.nupkg'.format(PACKAGE, package_version)) 61 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url)) 62 self.packfile = os.path.join(version.builddir, 'runtimes', rid, 'native', LIBRARY + '.dll') 64 self.tempdir = os.path.join(version.tempdir, rid) 65 self.tempfile = os.path.join(self.tempdir, os.path.normpath(self.itemfile)) 85 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url)) [all …]
|
/freebsd/contrib/atf/atf-c++/detail/ |
H A D | text_test.cpp | 58 ATF_TEST_CASE(join); 59 ATF_TEST_CASE_HEAD(join) in ATF_TEST_CASE_HEAD() argument 63 ATF_TEST_CASE_BODY(join) in ATF_TEST_CASE_BODY() argument 65 using atf::text::join; in ATF_TEST_CASE_BODY() 73 str = join(words, ","); in ATF_TEST_CASE_BODY() 78 str = join(words, ","); in ATF_TEST_CASE_BODY() 84 str = join(words, ","); in ATF_TEST_CASE_BODY() 91 str = join(words, ","); in ATF_TEST_CASE_BODY() 98 str = join(words, ","); in ATF_TEST_CASE_BODY() 108 str = join(words, ","); in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/crypto/openssl/fuzz/ |
H A D | helper.py | 22 CORPORA_DIR = os.path.abspath(os.path.join(THIS_DIR, "corpora")) 24 FUZZER_DIR = os.path.abspath(os.path.join(CORPORA_DIR, FUZZER)) 31 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)) 37 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)) 46 cmd = ([os.path.abspath(os.path.join(THIS_DIR, FUZZER))] + sys.argv[2:] 48 print(" ".join(cmd))
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-json-outfiles-test.py | 123 self.output_dir_ = os.path.join( 133 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + '.json')) 137 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + '.json')) 161 output_file1 = os.path.join(self.output_dir_, output_file_name1) 163 output_file2 = os.path.join(self.output_dir_, output_file_name2)
|
H A D | gtest_xml_outfiles_test.py | 88 self.output_dir_ = os.path.join( 98 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml")) 102 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml")) 126 output_file1 = os.path.join(self.output_dir_, output_file_name1) 128 output_file2 = os.path.join(self.output_dir_, output_file_name2)
|
H A D | googletest-output-test.py | 93 GOLDEN_PATH = os.path.join(gtest_test_utils.GetSourceDir(), GOLDEN_NAME) 328 '\n'.join( 348 os.path.join( 355 os.path.join(
|
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/ |
H A D | test-runner.py.in | 409 with open(os.path.join(self.outputdir, 'stdout'), 'wb') as out: 413 with open(os.path.join(self.outputdir, 'stderr'), 'wb') as err: 417 with open(os.path.join(self.outputdir, 'merged'), 'wb') as merged: 421 with open(os.path.join(self.outputdir, 'kmemleak'), 'wb') as kmem: 491 odir = os.path.join(self.outputdir, os.path.basename(self.pre)) 497 odir = os.path.join(self.outputdir, os.path.basename(self.failsafe)) 501 odir = os.path.join(self.outputdir, os.path.basename(self.post)) 568 self.pre = os.path.join(self.pathname, self.pre) 570 self.post = os.path.join(self.pathname, self.post) 572 self.post = os.path.join(self.pathname, self.post) [all …]
|
/freebsd/contrib/ntp/sntp/unity/auto/ |
H A D | unity_test_summary.py | 38 if len(failures) > 0: failure_output.append('\n'.join(failures)) 39 if len(ignores) > 0: ignore_output.append('n'.join(ignores)) 40 tests,failures,ignored = self.parse_test_summary('\n'.join(lines)) 50 self.report += "\n".join(ignore_output) 57 self.report += '\n'.join(failure_output)
|
/freebsd/lib/libc/tests/stdlib/ |
H A D | cxa_thread_atexit_test.cc | 104 t.join(); in ATF_TEST_CASE_BODY() 124 t.join(); in ATF_TEST_CASE_BODY() 146 t.join(); in ATF_TEST_CASE_BODY() 166 t.join(); in ATF_TEST_CASE_BODY()
|
/freebsd/crypto/openssl/ |
H A D | configdata.pm.in | 73 my @user_crossable = qw( {- join (' ', @user_crossable) -} ); 99 .join(", ", @{$config{build_file_templates}}), 254 print ' ',join(' ', 282 join(', ', @{$disabled_info{$what}->{skipped}}), 304 print '[ ', join(', ', $quotify->(@{$target{$_}})), " ],\n"; 325 ? join(' ', @{$config{$var}}) 360 print 'Reconfiguring with: ', join(' ',@{$config{perlargv}}), "\n"; 382 print "$_ : \\\n ", join(" \\\n ", @{$result->{$_}}), "\n"
|
/freebsd/contrib/llvm-project/libcxx/include/__thread/ |
H A D | jthread.h | 60 join(); in ~jthread() 74 join(); 91 _LIBCPP_HIDE_FROM_ABI void join() { __thread_.join(); } in join() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | thread.h | 107 inline void join(); 141 void thread::join() { in join() function 195 inline void join() { Thread.join(); } 236 void join() {} in join() function
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | eapol_test.py | 18 sys.path.append(os.path.join(dir, '..', 'wpaspy')) 25 self.ctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname)) 28 self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname)) 151 t[i].join()
|
/freebsd/contrib/sqlite3/tea/ |
H A D | pkgIndex.tcl.in | 6 [list load [file join $dir @PKG_LIB_FILE9@] sqlite3] 9 [list load [file join $dir @PKG_LIB_FILE8@] sqlite3]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | opt-touch.mk | 5 .MAKEFLAGS: -t opt-touch-phony opt-touch-join opt-touch-use opt-touch-make 10 opt-touch-join: .JOIN
|
H A D | opt-touch-jobs.mk | 8 .MAKEFLAGS: opt-touch-join 19 opt-touch-join: .JOIN
|
H A D | opt-no-action-touch.mk | 13 .MAKEFLAGS: opt-touch-join 25 opt-touch-join: .JOIN
|
/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | createPythonInit.py | 8 importNames = ", ".join('"{}"'.format(getFileName(f)) for f in pkgFiles) 25 pkgIniFile = os.path.normpath(os.path.join(pkgRelDir, "__init__.py"))
|
/freebsd/contrib/libcbor/CMakeModules/ |
H A D | JoinPaths.cmake | 8 # Modelled after Python’s os.path.join 9 # https://docs.python.org/3.7/library/os.path.html#os.path.join
|
/freebsd/contrib/kyua/utils/text/ |
H A D | operations_test.cpp | 219 ATF_REQUIRE_EQ("", text::join(lines, " ")); in ATF_TEST_CASE_BODY() 228 ATF_REQUIRE_EQ("first line", text::join(lines, "*")); in ATF_TEST_CASE_BODY() 239 ATF_REQUIRE_EQ("first abc second and last line", text::join(lines, " ")); in ATF_TEST_CASE_BODY() 241 text::join(lines, "***")); in ATF_TEST_CASE_BODY() 251 const std::string joined = text::join(lines, " "); in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/bmake/mk/ |
H A D | meta2deps.py | 103 p = '/'.join(dw[:-1]) 107 p = '/'.join([d,path]) 139 return r + '/'.join(p) 187 e.append('.'+','.join(w[0:n])) 340 return sep.strip() + sep.join(self.obj_deps) 344 return sep.strip() + sep.join(self.src_deps) 588 path = '/'.join([dir,base]) 633 path = '/'.join([dir,base]) 669 sp = '/'.join(path.replace(objroot,'').split('/')[1:])
|
/freebsd/share/mk/ |
H A D | meta2deps.py | 103 p = '/'.join(dw[:-1]) 107 p = '/'.join([d,path]) 139 return r + '/'.join(p) 187 e.append('.'+','.join(w[0:n])) 340 return sep.strip() + sep.join(self.obj_deps) 344 return sep.strip() + sep.join(self.src_deps) 588 path = '/'.join([dir,base]) 633 path = '/'.join([dir,base]) 669 sp = '/'.join(path.replace(objroot,'').split('/')[1:])
|