| /freebsd/contrib/llvm-project/libcxx/include/__format/ |
| H A D | formatter_integer.h | 61 struct formatter<signed char, _CharT> : public __formatter_integer<_CharT> {}; 63 struct formatter<short, _CharT> : public __formatter_integer<_CharT> {}; 65 struct formatter<int, _CharT> : public __formatter_integer<_CharT> {}; 67 struct formatter<long, _CharT> : public __formatter_integer<_CharT> {}; 69 struct formatter<long long, _CharT> : public __formatter_integer<_CharT> {}; 72 struct formatter<__int128_t, _CharT> : public __formatter_integer<_CharT> {}; 77 struct formatter<unsigned char, _CharT> : public __formatter_integer<_CharT> {}; 79 struct formatter<unsigned short, _CharT> : public __formatter_integer<_CharT> {}; 81 struct formatter<unsigned, _CharT> : public __formatter_integer<_CharT> {}; 83 struct formatter<unsigned long, _CharT> : public __formatter_integer<_CharT> {}; [all …]
|
| H A D | formatter_string.h | 63 struct formatter<const _CharT*, _CharT> : public __formatter_string<_CharT> { 82 struct formatter<_CharT*, _CharT> : public formatter<const _CharT*, _CharT> { 83 using _Base _LIBCPP_NODEBUG = formatter<const _CharT*, _CharT>; 93 struct formatter<_CharT[_Size], _CharT> : public __formatter_string<_CharT> { 107 struct formatter<basic_string<_CharT, _Traits, _Allocator>, _CharT> : public __formatter_string<_Ch… 120 struct formatter<basic_string_view<_CharT, _Traits>, _CharT> : public __formatter_string<_CharT> { 133 struct formatter<char*, wchar_t> : __disabled_formatter {}; 135 struct formatter<const char*, wchar_t> : __disabled_formatter {}; 137 struct formatter<char[_Size], wchar_t> : __disabled_formatter {}; 139 struct formatter<basic_string<char, _Traits, _Allocator>, wchar_t> : __disabled_formatter {}; [all …]
|
| H A D | container_adaptor.h | 42 formatter<ranges::ref_view<__maybe_const_container>, _CharT> __underlying_; 58 struct formatter<queue<_Tp, _Container>, _CharT> 62 struct formatter<priority_queue<_Tp, _Container, _Compare>, _CharT> 66 struct formatter<stack<_Tp, _Container>, _CharT>
|
| H A D | formatter_pointer.h | 62 struct formatter<nullptr_t, _CharT> : public __formatter_pointer<_CharT> {}; 64 struct formatter<void*, _CharT> : public __formatter_pointer<_CharT> {}; 66 struct formatter<const void*, _CharT> : public __formatter_pointer<_CharT> {};
|
| H A D | formatter_char.h | 78 struct formatter<char, char> : public __formatter_char<char> {}; 82 struct formatter<char, wchar_t> : public __formatter_char<wchar_t> {}; 85 struct formatter<wchar_t, wchar_t> : public __formatter_char<wchar_t> {};
|
| H A D | range_formatter.h | 52 …_LIBCPP_HIDE_FROM_ABI constexpr formatter<_Tp, _CharT>& underlying() noexcept { return __underlyin… in underlying() 53 …_LIBCPP_HIDE_FROM_ABI constexpr const formatter<_Tp, _CharT>& underlying() const noexcept { return… in underlying() 175 std::formatter<basic_string_view<_CharT>, _CharT> __formatter; in __format_as_string() 185 std::formatter<basic_string<_CharT>, _CharT> __formatter; in __format_as_string() 254 formatter<_Tp, _CharT> __underlying_;
|
| H A D | formatter_tuple.h | 132 tuple<formatter<remove_cvref_t<_Args>, _CharT>...> __underlying_; 139 struct formatter<pair<_Args...>, _CharT> : public __formatter_tuple<_CharT, pair<_Args...>, _Args..… 142 struct formatter<tuple<_Args...>, _CharT> : public __formatter_tuple<_CharT, tuple<_Args...>, _Args…
|
| /freebsd/contrib/mandoc/ |
| H A D | mandocd.c | 139 void *formatter; in main() 214 formatter = ascii_alloc(&options); in main() 217 formatter = utf8_alloc(&options); in main() 221 formatter = html_alloc(&options); in main() 248 process(parser, outtype, formatter); in main() 251 html_reset(formatter); in main() 269 ascii_free(formatter); in process() 272 html_free(formatter); in process() 284 process(struct mparse *parser, enum outt outtype, void *formatter) in process() 294 terminal_mdoc(formatter, met in usage() 125 void *formatter; main() local 258 process(struct mparse * parser,enum outt outtype,void * formatter) process() argument [all...] |
| /freebsd/contrib/kyua/utils/format/ |
| H A D | formatter.cpp | 186 format::formatter::init(void) in init() 209 format::formatter::formatter(const std::string& format, in formatter() function in format::formatter 226 format::formatter::formatter(const std::string& format) : in formatter() function in format::formatter 236 format::formatter::~formatter(void) in ~formatter() 246 format::formatter::str(void) const in str() 256 format::formatter::operator const std::string&(void) const in operator const std::string&() 267 format::formatter 268 format::formatter::operator%(const bool& value) const in operator %() 284 format::formatter 285 format::formatter::replace(const std::string& arg) const in replace() [all …]
|
| H A D | formatter.hpp | 79 class formatter { class 101 formatter replace(const std::string&) const; 104 formatter(const std::string&, const std::string&, 108 explicit formatter(const std::string&); 109 ~formatter(void); 114 template< typename Type > formatter operator%(const Type&) const; 115 formatter operator%(const bool&) const;
|
| H A D | formatter.ipp | 34 #include "utils/format/formatter.hpp" 40 /// Replaces the first format placeholder in a formatter. 42 /// Constructs a new formatter object that has one less formatting placeholder, 49 /// \return A new formatter that has one less format placeholder. 51 inline formatter 52 formatter::operator%(const Type& arg) const 59 /// Inserts a formatter string into a stream. 62 /// \param f The formatter to process and inject into the stream. 66 operator<<(std::ostream& os, const formatter& f)
|
| H A D | Makefile.am.inc | 33 libutils_a_SOURCES += utils/format/formatter.cpp 34 libutils_a_SOURCES += utils/format/formatter.hpp 36 libutils_a_SOURCES += utils/format/formatter.ipp
|
| /freebsd/contrib/kyua/cli/ |
| H A D | cmd_help.cpp | 136 text::table_formatter formatter; in general_help() local 137 formatter.set_column_width(0, first_width); in general_help() 138 formatter.set_column_width(1, text::table_formatter::width_refill); in general_help() 139 formatter.set_separator(" "); in general_help() 144 ui->out_table(options_table, formatter, " "); in general_help() 154 ui->out_table(command_tables.find(category)->second, formatter, " "); in general_help() 188 text::table_formatter formatter; in subcommand_help() local 189 formatter.set_column_width(0, first_width); in subcommand_help() 190 formatter.set_column_width(1, text::table_formatter::width_refill); in subcommand_help() 191 formatter.set_separator(" "); in subcommand_help() [all …]
|
| /freebsd/contrib/kyua/utils/cmdline/ |
| H A D | ui_test.cpp | 311 text::table_formatter formatter; in ATF_TEST_CASE_BODY() local 312 formatter.set_separator(" | "); in ATF_TEST_CASE_BODY() 313 formatter.set_column_width(0, 23); in ATF_TEST_CASE_BODY() 314 formatter.set_column_width(1, text::table_formatter::width_refill); in ATF_TEST_CASE_BODY() 317 ui.out_table(table, formatter, " "); in ATF_TEST_CASE_BODY() 341 text::table_formatter formatter; in ATF_TEST_CASE_BODY() local 342 formatter.set_separator(" | "); in ATF_TEST_CASE_BODY() 343 formatter.set_column_width(0, 23); in ATF_TEST_CASE_BODY() 344 formatter.set_column_width(1, text::table_formatter::width_refill); in ATF_TEST_CASE_BODY() 347 ui.out_table(table, formatter, " "); in ATF_TEST_CASE_BODY()
|
| H A D | ui.cpp | 223 text::table_formatter formatter, in out_table() argument 231 formatter.set_table_width(max_width.get() - prefix.length()); in out_table() 233 const std::vector< std::string > lines = formatter.format(table); in out_table()
|
| /freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | formatter.h | 721 struct formatter<chrono::sys_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> { 735 struct formatter<chrono::utc_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> { 746 struct formatter<chrono::tai_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> { 757 struct formatter<chrono::gps_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> { 771 struct formatter<chrono::file_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> { 782 struct formatter<chrono::local_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> { 794 struct formatter<chrono::duration<_Rep, _Period>, _CharT> : public __formatter_chrono<_CharT> { 816 struct formatter<chrono::day, _CharT> : public __formatter_chrono<_CharT> { 827 struct formatter<chrono::month, _CharT> : public __formatter_chrono<_CharT> { 838 struct formatter<chrono::year, _CharT> : public __formatter_chrono<_CharT> { [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_custom.cpp | 2262 Formatter formatter(str, fmt, size); in format_buffer() local 2264 while (*formatter.fmt_cur) { in format_buffer() 2265 formatter.fmt_start = formatter.fmt_cur; in format_buffer() 2266 formatter.width = -1; in format_buffer() 2269 if (*formatter.fmt_cur != '%') { in format_buffer() 2272 for (; *(formatter.fmt_cur + 1) && *(formatter.fmt_cur + 1) != '%'; in format_buffer() 2273 ++formatter.fmt_cur) {} in format_buffer() 2274 retval = formatter.format(); in format_buffer() 2275 dfsan_set_label(0, formatter.str_cur(), in format_buffer() 2276 formatter.num_written_bytes(retval)); in format_buffer() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | format.cppm | |
| H A D | format.inc | 45 // [format.formatter], formatter 46 using std::formatter; 68 // [format.range.formatter], class template range_formatter
|
| H A D | vector.cppm | |
| /freebsd/sys/contrib/device-tree/Bindings/sound/ |
| H A D | xlnx,audio-formatter.txt | 1 Device-Tree bindings for Xilinx PL audio formatter 7 - compatible: "xlnx,audio-formatter-1.0" 22 compatible = "xlnx,audio-formatter-1.0";
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | format | 126 // [format.formatter], formatter 127 template<class T, class charT = char> struct formatter; 155 // [format.range.formatter], class template range_formatter 160 // [format.range.fmtdef], class template range-default-formatter 162 struct range-default-formatter; // exposition only, since C++23 169 struct formatter<R, charT> : range-default-formatter<format_kind<R>, R, charT> { }; // since C++23 215 # include <__format/formatter.h>
|
| H A D | chrono | 958 struct formatter<chrono::duration<Rep, Period>, charT>; // C++20 960 struct formatter<chrono::sys_time<Duration>, charT>; // C++20 962 struct formatter<chrono::utc_time<Duration>, charT>; // C++20 964 struct formatter<chrono::tai_time<Duration>, charT>; // C++20 966 struct formatter<chrono::gps_time<Duration>, charT>; // C++20 968 struct formatter<chrono::file_time<Duration>, charT>; // C++20 970 struct formatter<chrono::local_time<Duration>, charT>; // C++20 971 template<class charT> struct formatter<chrono::day, charT>; // C++20 972 template<class charT> struct formatter<chrono::month, charT>; // C++20 973 template<class charT> struct formatter<chrono::year, charT>; // C++20 [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__vector/ |
| H A D | vector_bool_formatter.h | 29 struct formatter<_Tp, _CharT> { 31 formatter<bool, _CharT> __underlying_;
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | chrono | 863 struct formatter<chrono::sys_time<Duration>, charT>; // C++20 865 struct formatter<chrono::filetime<Duration>, charT>; // C++20 867 struct formatter<chrono::local_time<Duration>, charT>; // C++20 869 struct formatter<chrono::duration<Rep, Period>, charT>; // C++20 870 template<class charT> struct formatter<chrono::day, charT>; // C++20 871 template<class charT> struct formatter<chrono::month, charT>; // C++20 872 template<class charT> struct formatter<chrono::year, charT>; // C++20 873 template<class charT> struct formatter<chrono::weekday, charT>; // C++20 874 template<class charT> struct formatter<chrono::weekday_indexed, charT>; // C++20 875 template<class charT> struct formatter<chrono::weekday_last, charT>; // C++20 [all …]
|