Home
last modified time | relevance | path

Searched refs:__fmt (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_functions.h358 …I inline __runtime_format_string<char> runtime_format(string_view __fmt) noexcept { return __fmt; } in runtime_format() argument
361 return __fmt; in runtime_format()
456 vformat(string_view __fmt, format_args __args) { in vformat() argument
467 vformat(wstring_view __fmt, wformat_args __args) { in vformat() argument
476 format(format_string<_Args...> __fmt, _Args&&... __args) { in format() argument
483 format(wformat_string<_Args...> __fmt, _Args&&... __args) { in format() argument
492 basic_string_view<_CharT> __fmt, in __vformat_to_n() argument
543 basic_string_view<_CharT> __fmt, in requires()
626 basic_string_view<_CharT> __fmt, in __vformat_to_n() argument
630 basic_format_parse_context{__fmt, __args.__size()}, in __vformat_to_n()
[all …]
H A Dformat_parse_context.h34 basic_string_view<_CharT> __fmt, size_t __num_args = 0) noexcept
35 : __begin_(__fmt.begin()),
36 __end_(__fmt.end()),
H A Dformatter_floating_point.h65 …CPP_HIDE_FROM_ABI char* __to_buffer(char* __first, char* __last, _Tp __value, chars_format __fmt) { in __to_buffer() argument
66 to_chars_result __r = std::to_chars(__first, __last, __value, __fmt); in __to_buffer()
72 … char* __to_buffer(char* __first, char* __last, _Tp __value, chars_format __fmt, int __precision) { in __to_buffer() argument
73 to_chars_result __r = std::to_chars(__first, __last, __value, __fmt, __precision); in __to_buffer()
/freebsd/contrib/llvm-project/libcxx/src/
H A Dcharconv.cpp49 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt) { in to_chars() argument
50 … _Floating_to_chars<_Floating_to_chars_overload::_Format_only>(__first, __last, __value, __fmt, 0); in to_chars()
53 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt) { in to_chars() argument
54 … _Floating_to_chars<_Floating_to_chars_overload::_Format_only>(__first, __last, __value, __fmt, 0); in to_chars()
57 to_chars_result to_chars(char* __first, char* __last, long double __value, chars_format __fmt) { in to_chars() argument
59 __first, __last, static_cast<double>(__value), __fmt, 0); in to_chars()
62 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt, int __prec… in to_chars() argument
64 __first, __last, __value, __fmt, __precision); in to_chars()
67 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt, int __pre… in to_chars() argument
69 __first, __last, __value, __fmt, __precision); in to_chars()
[all …]
H A Dlocale.cpp5042 void __time_put::__do_put(char* __nb, char*& __ne, const tm* __tm, char __fmt, char __mod) const { in __do_put() argument
5043 char fmt[] = {'%', __fmt, __mod, 0}; in __do_put()
5051 void __time_put::__do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, char __fmt, char __mod) co… in __do_put() argument
5054 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()
/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_floating_point.h36 to_chars(char* __first, char* __last, float __value, chars_format __fmt);
39 to_chars(char* __first, char* __last, double __value, chars_format __fmt);
42 to_chars(char* __first, char* __last, long double __value, chars_format __fmt);
45 to_chars(char* __first, char* __last, float __value, chars_format __fmt, int __precision);
48 to_chars(char* __first, char* __last, double __value, chars_format __fmt, int __precision);
51 to_chars(char* __first, char* __last, long double __value, chars_format __fmt, int __precision);
/freebsd/contrib/llvm-project/libcxx/include/
H A Dprint216 string __str = std::vformat(__fmt, __args);
242 __print::__vprint_nonunicode(__stream, __fmt, __args, __write_nl);
250 return __print::__vprint_nonunicode(__stream, __fmt, __args, __write_nl);
255 string __str = std::vformat(__fmt, __args);
288 [[maybe_unused]] string_view __fmt,
341 std::print(stdout, __fmt, std::forward<_Args>(__args)...);
361 std::println(stdout, __fmt, std::forward<_Args>(__args)...);
367 __print::__vprint_unicode(__stream, __fmt, __args, false);
372 std::vprint_unicode(stdout, __fmt, __args);
379 __print::__vprint_nonunicode(__stream, __fmt, __args, false);
[all …]
H A Dostream1042 string __o = std::vformat(__os.getloc(), __fmt, __args);
1073 std::__vprint_nonunicode(__os, __fmt, __args, false);
1096 return std::__vprint_nonunicode(__os, __fmt, __args, __write_nl);
1100 return std::__vprint_nonunicode(__os, __fmt, __args, __write_nl);
1119 __print::__vprint_unicode_posix(__file, __fmt, __args, __write_nl, true);
1121 __print::__vprint_unicode_windows(__file, __fmt, __args, __write_nl, true);
1137 vprint_unicode(ostream& __os, string_view __fmt, format_args __args) {
1138 std::__vprint_unicode(__os, __fmt, __args, false);
1144 print(ostream& __os, format_string<_Args...> __fmt, _Args&&... __args) {
1157 println(ostream& __os, format_string<_Args...> __fmt, _Args&&... __args) {
[all …]
H A Diomanip323 _LIBCPP_HIDE_FROM_ABI __iom_t9(tm* __tm, const _CharT* __fmt) : __tm_(__tm), __fmt_(__fmt) {}
353 inline _LIBCPP_HIDE_FROM_ABI __iom_t9<_CharT> get_time(tm* __tm, const _CharT* __fmt) {
354 return __iom_t9<_CharT>(__tm, __fmt);
372 …_LIBCPP_HIDE_FROM_ABI __iom_t10(const tm* __tm, const _CharT* __fmt) : __tm_(__tm), __fmt_(__fmt) …
402 inline _LIBCPP_HIDE_FROM_ABI __iom_t10<_CharT> put_time(const tm* __tm, const _CharT* __fmt) {
403 return __iom_t10<_CharT>(__tm, __fmt);
H A Dlocale1298 char __fmt[8] = {'%', 0};
1354 char __fmt[8] = {'%', 0};
1846 return get(__b, __e, __iob, __err, __tm, __fmt, __fmt + sizeof(__fmt) / sizeof(__fmt[0]));
1852 const string_type& __fmt = this->__x();
1853 return get(__b, __e, __iob, __err, __tm, __fmt.data(), __fmt.data() + __fmt.size());
1885 switch (__fmt) {
2129 char __fmt = __ct.narrow(*__pb, 0);
2130 if (__fmt == 'E' || __fmt == 'O') {
2136 __mod = __fmt;
2137 __fmt = __ct.narrow(*__pb, 0);
[all …]
H A Dregex4637 const basic_string<char_type, _ST, _SA>& __fmt,
4639 return format(__output_iter, __fmt.data(), __fmt.data() + __fmt.size(), __flags);
4643 format(const basic_string<char_type, _ST, _SA>& __fmt,
4646 format(std::back_inserter(__r), __fmt.data(), __fmt.data() + __fmt.size(), __flags);
4652 format(std::back_inserter(__r), __fmt, __fmt + char_traits<char_type>::length(__fmt), __flags);
5711 const _CharT* __fmt,
5724 __output_iter = __i->format(__output_iter, __fmt, __fmt + __len, __flags);
5741 const basic_string<_CharT, _ST, _SA>& __fmt,
5761 const _CharT* __fmt,
5772 const basic_string<_CharT, _ST, _SA>& __fmt,
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Ddebugfs.h89 #define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument
90 DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt)
H A Dfs.h377 #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument
381 return (simple_attr_open(inode, filp, __get, __set, __fmt)); \