Home
last modified time | relevance | path

Searched refs:separator (Results 1 – 25 of 217) sorted by relevance

123456789

/freebsd-13.1/contrib/bmake/unit-tests/
H A Dvarmod-to-separator.mk10 . warning Space as separator does not work.
15 . warning Comma as separator does not work.
26 . warning Colon as separator does not work.
33 . warning Colon as separator does not work.
45 . warning Colon as separator does not work.
52 . warning Colon as separator does not work.
64 . warning Empty separator before closing brace does not work.
131 . warning The separator \n does not produce a newline.
136 . warning The separator \t does not produce a tab.
141 . warning The separator \012 is not interpreted in octal ASCII.
[all …]
/freebsd-13.1/contrib/apr/file_io/unix/
H A Dfilepath_util.c31 char separator, in apr_filepath_list_split_impl() argument
39 separator_string[0] = separator; in apr_filepath_list_split_impl()
45 ptr = strchr(ptr, separator); in apr_filepath_list_split_impl()
68 char separator, in apr_filepath_list_merge_impl() argument
105 *path++ = separator; in apr_filepath_list_merge_impl()
/freebsd-13.1/contrib/ncurses/ncurses/tinfo/
H A Dcomp_scan.c86 static char separator; /* capability separator */ variable
416 if (separator == ':' && ch == ':') in _nc_get_token()
445 _nc_panic_mode(separator); in _nc_get_token()
476 separator = ':'; in _nc_get_token()
480 separator = ','; in _nc_get_token()
564 separator = ':'; in _nc_get_token()
654 if (ch != separator) in _nc_get_token()
660 if ((ch = next_char()) != separator && !silent) in _nc_get_token()
679 if ((*numchk != '\0') || (ch != separator)) in _nc_get_token()
697 if (!silent && ch != separator) in _nc_get_token()
[all …]
/freebsd-13.1/contrib/ntp/sntp/m4/
H A Dntp_dir_sep.m42 dnl What directory path separator do we use?
5 [for directory path separator],
22 [Directory separator character, usually / or \\])
/freebsd-13.1/contrib/apr/include/arch/
H A Dapr_private_common.h29 char separator,
34 char separator,
/freebsd-13.1/contrib/wpa/src/common/
H A Dcli.c104 int separator) in cli_txt_list_del_word() argument
109 end = os_strchr(txt, separator); in cli_txt_list_del_word()
153 int separator) in cli_txt_list_add_word() argument
159 end = os_strchr(txt, separator); in cli_txt_list_add_word()
H A Dcli.h31 int separator);
36 int separator);
/freebsd-13.1/tests/sys/cddl/zfs/tests/cli_root/zfs_get/
H A Dzfs_get_common.kshlib47 typeset separator=${3}
79 comb_str=$comb_str$separator${elements[item]}
/freebsd-13.1/contrib/file/magic/Magdir/
H A Dsosi18 # separator (any number of " ", "\t", "\n" or "\r"), might have BOM at
22 # separator, as well as "..SOSI-VERSJON " followed by the format
23 # version and a separator.
/freebsd-13.1/contrib/libarchive/libarchive/test/
H A Dtest_ustar_filenames.c41 int separator = 0; in test_filename() local
52 separator = 1; in test_filename()
54 for (; i < dlen + flen + separator; i++) in test_filename()
/freebsd-13.1/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_get/
H A Dzfs_get_common.kshlib47 typeset separator=${3}
79 comb_str=$comb_str$separator${elements[item]}
/freebsd-13.1/sys/contrib/openzfs/module/zfs/
H A Dbtree.c877 bmov(separator, out, size); in zfs_btree_bulk_finish()
892 move_count - 1) * size, separator, size); in zfs_btree_bulk_finish()
946 bmov(separator, e_out, size); in zfs_btree_bulk_finish()
1402 bmov(separator, node->btc_elems, size); in zfs_btree_remove_from_node()
1413 bmov(take_elem, separator, size); in zfs_btree_remove_from_node()
1452 bmov(take_elem, separator, size); in zfs_btree_remove_from_node()
1505 bmov(separator, e_out, size); in zfs_btree_remove_from_node()
1657 bmov(separator, leaf->btl_elems, size); in zfs_btree_remove_idx()
1660 bmov(take_elem, separator, size); in zfs_btree_remove_idx()
1692 bmov(take_elem, separator, size); in zfs_btree_remove_idx()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DDiagnosticManager.cpp47 std::string DiagnosticManager::GetString(char separator) { in GetString() argument
53 ret.push_back(separator); in GetString()
/freebsd-13.1/contrib/atf/atf-c++/detail/
H A Dtext.hpp57 join(const T& words, const std::string& separator) in join() argument
67 str += separator; in join()
/freebsd-13.1/contrib/kyua/utils/text/
H A Dtable.cpp206 const std::string& separator) in format_row() argument
223 lines.push_back(text::join(*iter, separator)); in format_row()
383 text::table_formatter::set_separator(const char* separator) in set_separator() argument
385 _separator = separator; in set_separator()
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dstring.c1025 const char *separator, in svn_cstring_join2() argument
1030 size_t sep_len = strlen(separator); in svn_cstring_join2()
1037 svn_stringbuf_appendbytes(new_str, separator, sep_len); in svn_cstring_join2()
1042 svn_stringbuf_appendbytes(new_str, separator, sep_len); in svn_cstring_join2()
1279 ui64toa_sep(apr_uint64_t number, char separator, char *buffer) in ui64toa_sep() argument
1287 buffer[i-3] = separator; in ui64toa_sep()
1295 svn__ui64toa_sep(apr_uint64_t number, char separator, apr_pool_t *pool) in svn__ui64toa_sep() argument
1298 ui64toa_sep(number, separator, buffer); in svn__ui64toa_sep()
1304 svn__i64toa_sep(apr_int64_t number, char separator, apr_pool_t *pool) in svn__i64toa_sep() argument
1310 ui64toa_sep((apr_uint64_t)(-number), separator, &buffer[1]); in svn__i64toa_sep()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DUUID.cpp48 std::string UUID::GetAsString(llvm::StringRef separator) const { in GetAsString()
54 os << separator; in GetAsString()
/freebsd-13.1/contrib/subversion/subversion/include/private/
H A Dsvn_string_private.h173 svn__ui64toa_sep(apr_uint64_t number, char separator, apr_pool_t *pool);
179 svn__i64toa_sep(apr_int64_t number, char separator, apr_pool_t *pool);
/freebsd-13.1/usr.bin/locate/locate/
H A Dfastfind.c108 extern char separator;
320 (void)printf("%s%c",path,separator);
324 (void)printf("%s%c",path,separator);
/freebsd-13.1/crypto/openssl/crypto/ct/
H A Dct_prn.c115 const char *separator, const CTLOG_STORE *log_store) in SCT_LIST_print() argument
125 BIO_printf(out, "%s", separator); in SCT_LIST_print()
/freebsd-13.1/contrib/apr/strings/
H A Dapr_cstr.c176 const char *separator,
180 size_t sep_len = strlen(separator);
187 svn_stringbuf_appendbytes(new_str, separator, sep_len);
/freebsd-13.1/sbin/natd/
H A Dnatd.c1625 char* separator; in SetupPortRedirect() local
1647 separator = strchr(ptr, ','); in SetupPortRedirect()
1648 if (separator) { /* LSNAT redirection syntax. */ in SetupPortRedirect()
1669 separator = strchr (ptr, ':'); in SetupPortRedirect()
1670 if (separator) { in SetupPortRedirect()
1688 separator = strchr (ptr, ':'); in SetupPortRedirect()
1689 if (separator) { in SetupPortRedirect()
1816 char* separator; in SetupAddressRedirect() local
1832 separator = strchr(ptr, ','); in SetupAddressRedirect()
1833 if (separator) { /* LSNAT redirection syntax. */ in SetupAddressRedirect()
/freebsd-13.1/crypto/openssl/apps/
H A Ddgst.c98 int separator = 0, debug = 0, keyform = FORMAT_PEM, siglen = 0; in dgst_main() local
130 separator = 1; in dgst_main()
133 separator = 2; in dgst_main()
389 ret = do_fp(out, buf, inp, separator, out_bin, sigkey, sigbuf, in dgst_main()
412 r = do_fp(out, buf, inp, separator, out_bin, sigkey, sigbuf, in dgst_main()
/freebsd-13.1/usr.sbin/prometheus_sysctl_exporter/
H A Dprometheus_sysctl_exporter.c385 char separator, buf[BUFSIZ]; in oid_get_metric() local
413 separator = '{'; in oid_get_metric()
420 snprintf(buf, sizeof(buf), "%c%s=\"", separator, label); in oid_get_metric()
430 separator = ','; in oid_get_metric()
435 if (separator != '{') in oid_get_metric()
/freebsd-13.1/contrib/libarchive/libarchive/
H A Darchive_acl.c672 wchar_t separator; in archive_acl_to_text_w() local
692 separator = L','; in archive_acl_to_text_w()
694 separator = L'\n'; in archive_acl_to_text_w()
709 *wp++ = separator; in archive_acl_to_text_w()
713 *wp++ = separator; in archive_acl_to_text_w()
905 char separator; in archive_acl_to_text_l() local
925 separator = ','; in archive_acl_to_text_l()
927 separator = '\n'; in archive_acl_to_text_l()
942 *p++ = separator; in archive_acl_to_text_l()
946 *p++ = separator; in archive_acl_to_text_l()
[all …]

123456789