Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__ostream/
H A Dprint.h31 __vprint_nonunicode(ostream& __os, string_view __fmt, format_args __args, bool __write_nl) { in __vprint_nonunicode() argument
45 string __o = std::vformat(__os.getloc(), __fmt, __args); in __vprint_nonunicode()
75 _LIBCPP_HIDE_FROM_ABI inline void vprint_nonunicode(ostream& __os, string_view __fmt, format_args _… in vprint_nonunicode() argument
76 std::__vprint_nonunicode(__os, __fmt, __args, false); in vprint_nonunicode()
96 _LIBCPP_HIDE_FROM_ABI void __vprint_unicode(ostream& __os, string_view __fmt, format_args __args, b… in __vprint_unicode() argument
98 return std::__vprint_nonunicode(__os, __fmt, __args, __write_nl); in __vprint_unicode()
102 return std::__vprint_nonunicode(__os, __fmt, __args, __write_nl); in __vprint_unicode()
121 __print::__vprint_unicode_posix(__file, __fmt, __args, __write_nl, true); in __vprint_unicode()
123 __print::__vprint_unicode_windows(__file, __fmt, __args, __write_nl, true); in __vprint_unicode()
138 _LIBCPP_HIDE_FROM_ABI inline void vprint_unicode(ostream& __os, string_view __fmt, format_args __ar… in vprint_unicode() argument
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_functions.h357 …I inline __runtime_format_string<char> runtime_format(string_view __fmt) noexcept { return __fmt; } in runtime_format() argument
359 _LIBCPP_HIDE_FROM_ABI inline __runtime_format_string<wchar_t> runtime_format(wstring_view __fmt) no… in runtime_format() argument
360 return __fmt; in runtime_format()
408 basic_string_view<_CharT> __fmt, in requires()
412 …basic_format_parse_context{__fmt, __args.__size()}, std::__format_context_create(std::move(__out_i… in requires()
415 std::__format::__vformat_to(basic_format_parse_context{__fmt, __args.__size()}, in requires()
425 _LIBCPP_ALWAYS_INLINE _LIBCPP_HIDE_FROM_ABI _OutIt vformat_to(_OutIt __out_it, string_view __fmt, f… in vformat_to() argument
426 return std::__vformat_to(std::move(__out_it), __fmt, __args); in vformat_to()
432 vformat_to(_OutIt __out_it, wstring_view __fmt, wformat_args __args) { in vformat_to() argument
433 return std::__vformat_to(std::move(__out_it), __fmt, __args); in vformat_to()
[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.h66 …CPP_HIDE_FROM_ABI char* __to_buffer(char* __first, char* __last, _Tp __value, chars_format __fmt) { in __to_buffer() argument
67 to_chars_result __r = std::to_chars(__first, __last, __value, __fmt); in __to_buffer()
73 … char* __to_buffer(char* __first, char* __last, _Tp __value, chars_format __fmt, int __precision) { in __to_buffer() argument
74 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()
50 return _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()
54 return _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) {
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 __precision) { 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 __precision) { in to_chars()
69 __first, __last, __value, __fmt, __precisio in to_chars()
58 to_chars(char * __first,char * __last,float __value,chars_format __fmt) to_chars() argument
66 to_chars(char * __first,char * __last,long double __value,chars_format __fmt) to_chars() argument
71 to_chars(char * __first,char * __last,float __value,chars_format __fmt,int __precision) to_chars() argument
76 to_chars(char * __first,char * __last,double __value,chars_format __fmt,int __precision) to_chars() argument
81 to_chars(char * __first,char * __last,long double __value,chars_format __fmt,int __precision) to_chars() argument
[all...]
H A Dlocale.cpp5040 void __time_put::__do_put(char* __nb, char*& __ne, const tm* __tm, char __fmt, char __mod) const { in __do_put() argument
5041 char fmt[] = {'%', __fmt, __mod, 0}; in __do_put()
5049 void __time_put::__do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, char __fmt, char __mod) co… in __do_put() argument
5052 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()
/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_floating_point.h35 to_chars(char* __first, char* __last, float __value, chars_format __fmt);
38 to_chars(char* __first, char* __last, double __value, chars_format __fmt);
41 to_chars(char* __first, char* __last, long double __value, chars_format __fmt);
44 to_chars(char* __first, char* __last, float __value, chars_format __fmt, int __precision);
47 to_chars(char* __first, char* __last, double __value, chars_format __fmt, int __precision);
50 to_chars(char* __first, char* __last, long double __value, chars_format __fmt, int __precision);
/freebsd/contrib/llvm-project/libcxx/include/
H A Dprint215 __vprint_nonunicode(FILE* __stream, string_view __fmt, format_args __args, bool __write_nl) {
217 string __str = std::vformat(__fmt, __args);
238 __vprint_unicode_posix(FILE* __stream, string_view __fmt, format_args __args, bool __write_nl, bool…
243 __print::__vprint_nonunicode(__stream, __fmt, __args, __write_nl);
249 __vprint_unicode_windows(FILE* __stream, string_view __fmt, format_args __args, bool __write_nl, bo…
251 return __print::__vprint_nonunicode(__stream, __fmt, __args, __write_nl);
256 string __str = std::vformat(__fmt, __args);
289 [[maybe_unused]] string_view __fmt,
316 …__print::__vprint_unicode_posix(__stream, __fmt, __args, __write_nl, __print::__is_terminal(__stre…
318 …__print::__vprint_unicode_windows(__stream, __fmt, __args, __write_nl, __print::__is_terminal(__st…
[all …]
H A Diomanip322 _LIBCPP_HIDE_FROM_ABI __iom_t9(tm* __tm, const _CharT* __fmt) : __tm_(__tm), __fmt_(__fmt) {}
352 inline _LIBCPP_HIDE_FROM_ABI __iom_t9<_CharT> get_time(tm* __tm, const _CharT* __fmt) {
353 return __iom_t9<_CharT>(__tm, __fmt);
371 …_LIBCPP_HIDE_FROM_ABI __iom_t10(const tm* __tm, const _CharT* __fmt) : __tm_(__tm), __fmt_(__fmt) …
401 inline _LIBCPP_HIDE_FROM_ABI __iom_t10<_CharT> put_time(const tm* __tm, const _CharT* __fmt) {
402 return __iom_t10<_CharT>(__tm, __fmt);
H A Dlocale1066 …static void __format_int(char* __fmt, const char* __len, bool __signd, ios_base::fmtflags __flags);
1067 static bool __format_float(char* __fmt, const char* __len, ios_base::fmtflags __flags);
1326 char __fmt[8] = {'%', 0};
1327 this->__format_int(__fmt + 1, __len, is_signed<_Integral>::value, __iob.flags());
1339 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1382 char __fmt[8] = {'%', 0};
1383 bool __specify_precision = this->__format_float(__fmt + 1, __len, __iob.flags());
1392 …__nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1394 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1398 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
[all …]
H A Dregex4631 const basic_string<char_type, _ST, _SA>& __fmt,
4633 return format(__output_iter, __fmt.data(), __fmt.data() + __fmt.size(), __flags);
4637 format(const basic_string<char_type, _ST, _SA>& __fmt,
4640 format(std::back_inserter(__r), __fmt.data(), __fmt.data() + __fmt.size(), __flags);
4644 …format(const char_type* __fmt, regex_constants::match_flag_type __flags = regex_constants::format_…
4646 format(std::back_inserter(__r), __fmt, __fmt + char_traits<char_type>::length(__fmt), __flags);
5722 const _CharT* __fmt,
5732 for (size_t __len = char_traits<_CharT>::length(__fmt); __i != __eof; ++__i) {
5735 __output_iter = __i->format(__output_iter, __fmt, __fmt + __len, __flags);
5752 const basic_string<_CharT, _ST, _SA>& __fmt,
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Ddebugfs.h91 #define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument
92 DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt)
93 #define DEFINE_DEBUGFS_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \ argument
94 DEFINE_SIMPLE_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt)
H A Dfs.h387 #define __DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt, __wrfunc)\ argument
391 return (simple_attr_open(inode, filp, __get, __set, __fmt)); \