Searched refs:join (Results 1 - 25 of 212) sorted by relevance

123456789

/freebsd-12-stable/usr.bin/join/
H A DMakefile6 PROG= join
/freebsd-12-stable/usr.bin/join/tests/
H A Dregress.sh7 REGRESSION_TEST_ONE(`join -t , -a1 -a2 -e "(unknown)" -o 0,1.2,2.2 ${SRCDIR}/regress.1.in ${SRCDIR}/regress.2.in')
/freebsd-12-stable/contrib/llvm-project/lldb/bindings/python/
H A DcreatePythonInit.py8 importNames = ', '.join('"{}"'.format(getFileName(f)) for f in pkgFiles)
15 pkgIniFile = os.path.normpath(os.path.join(pkgRelDir, "__init__.py"))
/freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
H A Dsplit_join_fn_imps.hpp71 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
79 base_type::join(other);
/freebsd-12-stable/sys/contrib/libsodium/packaging/dotnet-core/
H A Dprepare.py51 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(CACHEDI
[all...]
/freebsd-12-stable/contrib/googletest/googletest/test/
H A Dgtest_xml_outfiles_test.py76 # We want the trailing '/' that the last "" provides in os.path.join, for
79 self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(),
88 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
92 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
120 output_file1 = os.path.join(self.output_dir_, output_file_name1)
122 output_file2 = os.path.join(self.output_dir_, output_file_name2)
H A Dgoogletest-json-outfiles-test.py101 # We want the trailing '/' that the last "" provides in os.path.join, for
104 self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(),
113 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + '.json'))
117 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + '.json'))
145 output_file1 = os.path.join(self.output_dir_, output_file_name1)
147 output_file2 = os.path.join(self.output_dir_, output_file_name2)
H A Dgoogletest-list-tests-unittest.py163 (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output,
169 (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output)))
/freebsd-12-stable/contrib/subversion/
H A Dwin-tests.py125 sys.path.insert(0, os.path.join('build', 'generator'))
130 version_header = os.path.join('subversion', 'include', 'svn_version.h')
297 abs_objdir = os.path.join(abs_srcdir, objdir)
347 tgt_dir = os.path.join(abs_builddir, dirname)
359 tgt = os.path.join(to_dir, os.path.basename(src))
393 src = os.path.join(dir, name)
398 src = os.path.join(dir, name)
405 src = os.path.join(abs_objdir, i.filename)
412 mod_dav_svn_path = os.path.join(abs_objdir, 'subversion',
414 mod_authz_svn_path = os.path.join(abs_objdi
[all...]
H A Dgen-make.py44 sys.path.insert(0, os.path.join('build', 'generator'))
57 verfname = os.path.join('subversion', 'include', 'svn_version.h')
272 msg = ''.join(traceback.format_exception_only(typ, val))
309 rest.add('--with-apr', os.path.join(val, 'srclib', 'apr'),
311 rest.add('--with-apr-util', os.path.join(val, 'srclib', 'apr-util'),
313 rest.add('--with-apr-iconv', os.path.join(val, 'srclib', 'apr-iconv'),
H A D.ycm_extra_conf.py53 new_flag = os.path.join( working_directory, flag )
62 new_flag = path_flag + os.path.join( working_directory, path )
/freebsd-12-stable/contrib/serf/build/
H A Dcheck.py50 SERF_RESPONSE_EXE = os.path.join(test_builddir, SERF_RESPONSE_EXE)
51 TEST_ALL_EXE = os.path.join(test_builddir, TEST_ALL_EXE)
/freebsd-12-stable/contrib/googletest/googlemock/scripts/
H A Dupload_gmock.py53 upload_py_path = os.path.join(my_dir, 'upload.py')
66 upload_py_argv.append(CC_FLAG + ','.join(cc_list))
H A Dfuse_gmock_files.py71 DEFAULT_GMOCK_ROOT_DIR = os.path.join(os.path.dirname(__file__), '..')
74 sys.path.append(os.path.join(DEFAULT_GMOCK_ROOT_DIR, '../googletest/scripts'))
94 return os.path.join(gmock_root, '../googletest')
122 output_file = file(os.path.join(output_dir, GMOCK_H_OUTPUT), 'w')
135 for line in file(os.path.join(gmock_root, gmock_header_path), 'r'):
174 for line in file(os.path.join(gmock_root, gmock_source_file), 'r'):
207 output_file = file(os.path.join(output_dir, GMOCK_GTEST_ALL_CC_OUTPUT), 'w')
/freebsd-12-stable/contrib/googletest/googlemock/test/
H A Dgmock_test_utils.py39 gtest_tests_util_dir = os.path.join(SCRIPT_DIR, '../../googletest/test')
43 GTEST_TESTS_UTIL_DIR = os.path.join(SCRIPT_DIR, '../../googletest/test')
/freebsd-12-stable/contrib/googletest/googletest/scripts/
H A Dupload_gtest.py53 upload_py_path = os.path.join(my_dir, 'upload.py')
66 upload_py_argv.append(CC_FLAG + ','.join(cc_list))
H A Dfuse_gtest_files.py71 DEFAULT_GTEST_ROOT_DIR = os.path.join(os.path.dirname(__file__), '..')
95 if not os.path.isfile(os.path.join(directory, relative_path)):
120 output_file = os.path.join(output_dir, relative_path)
152 output_file = open(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
165 for line in open(os.path.join(gtest_root, gtest_header_path), 'r'):
193 for line in open(os.path.join(gtest_root, gtest_source_file), 'r'):
224 output_file = open(os.path.join(output_dir, GTEST_ALL_CC_OUTPUT), 'w')
H A Drelease_docs.py114 r'(\[|/wiki/)(%s)([ #])' % '|'.join(page_names))
140 source_file = os.path.join(self.wiki_dir, f)
141 versioned_file = os.path.join(self.wiki_dir, self.version_prefix + f)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntEqClasses.h13 // passing a representative member of each class to join().
58 unsigned join(unsigned a, unsigned b);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A Dthread.h44 void join() {}
/freebsd-12-stable/contrib/atf/atf-c++/detail/
H A Dtext_test.cpp58 ATF_TEST_CASE(join); variable
59 ATF_TEST_CASE_HEAD(join)
61 set_md_var("descr", "Tests the join function");
63 ATF_TEST_CASE_BODY(join)
65 using atf::text::join;
73 str = join(words, ",");
78 str = join(words, ",");
84 str = join(words, ",");
91 str = join(words, ",");
98 str = join(word
[all...]
/freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Dsplit_join_fn_imps.hpp86 _GLIBCXX_DEBUG_ONLY(map_debug_base::join(other);)
106 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
138 _GLIBCXX_DEBUG_ONLY(map_debug_base::join(other);)
/freebsd-12-stable/lib/libc/tests/stdlib/
H A Dcxa_thread_atexit_test.cc107 t.join();
127 t.join();
149 t.join();
169 t.join();
/freebsd-12-stable/contrib/googletest/googlemock/scripts/generator/cpp/
H A Dgmock_class.py71 modifiers = ' '.join(node.return_type.modifiers) + ' '
75 return_type += '<' + ', '.join(template_args) + '>'
107 args = ', '.join(param.type.name for param in node.parameters)
151 lines.append('template <' + ', '.join(template_decls) + '>')
152 parent_name += '<' + ', '.join(template_args) + '>'
183 (filename, ', '.join(missing_class_name_list)))
193 '.'.join(map(str, _VERSION)))
223 sys.stdout.write('\n'.join(lines))
/freebsd-12-stable/sys/contrib/zstd/contrib/pzstd/utils/test/
H A DResourcePoolTest.cpp63 t1.join();
64 t2.join();

Completed in 328 milliseconds

123456789