| /llvm-project-15.0.7/libcxx/src/ |
| H A D | charconv.cpp | 58 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt) { in to_chars() argument 59 … _Floating_to_chars<_Floating_to_chars_overload::_Format_only>(__first, __last, __value, __fmt, 0); in to_chars() 62 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt) { in to_chars() argument 63 … _Floating_to_chars<_Floating_to_chars_overload::_Format_only>(__first, __last, __value, __fmt, 0); in to_chars() 66 to_chars_result to_chars(char* __first, char* __last, long double __value, chars_format __fmt) { in to_chars() argument 68 __fmt, 0); in to_chars() 71 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt, int __prec… in to_chars() argument 72 …_Floating_to_chars<_Floating_to_chars_overload::_Format_precision>(__first, __last, __value, __fmt, in to_chars() 76 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt, int __pre… in to_chars() argument 77 …_Floating_to_chars<_Floating_to_chars_overload::_Format_precision>(__first, __last, __value, __fmt, in to_chars() [all …]
|
| H A D | locale.cpp | 5881 char __fmt, char __mod) const in __do_put() argument 5883 char fmt[] = {'%', __fmt, __mod, 0}; in __do_put() 5893 char __fmt, char __mod) const in __do_put() argument 5897 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | format | 534 _OutIt __out_it, basic_string_view<_CharT> __fmt, 538 basic_format_parse_context{__fmt, __args.__size()}, 543 basic_format_parse_context{__fmt, __args.__size()}, 584 vformat(string_view __fmt, format_args __args) { 592 vformat(wstring_view __fmt, wformat_args __args) { 608 format(wformat_string<_Args...> __fmt, _Args&&... __args) { 669 basic_format_parse_context{__fmt, __args.__size()}, 736 return _VSTD::vformat(_VSTD::move(__loc), __fmt.get(), 744 return _VSTD::vformat(_VSTD::move(__loc), __fmt.get(), 755 basic_format_parse_context{__fmt, __args.__size()}, [all …]
|
| H A D | iomanip | 410 __iom_t9(tm* __tm, const _CharT* __fmt) 411 : __tm_(__tm), __fmt_(__fmt) {} 451 get_time(tm* __tm, const _CharT* __fmt) 453 return __iom_t9<_CharT>(__tm, __fmt); 471 __iom_t10(const tm* __tm, const _CharT* __fmt) 472 : __tm_(__tm), __fmt_(__fmt) {} 511 put_time(const tm* __tm, const _CharT* __fmt) 513 return __iom_t10<_CharT>(__tm, __fmt);
|
| H A D | locale | 1490 char __fmt[8] = {'%', 0}; 1558 char __fmt[8] = {'%', 0}; 2178 return get(__b, __e, __iob, __err, __tm, __fmt, __fmt + sizeof(__fmt)/sizeof(__fmt[0])); 2188 const string_type& __fmt = this->__x(); 2189 return get(__b, __e, __iob, __err, __tm, __fmt.data(), __fmt.data() + __fmt.size()); 2237 switch (__fmt) 2523 char __fmt = __ct.narrow(*__pb, 0); 2524 if (__fmt == 'E' || __fmt == 'O') 2532 __mod = __fmt; 2533 __fmt = __ct.narrow(*__pb, 0); [all …]
|
| H A D | charconv | 803 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt); 806 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt); 809 to_chars_result to_chars(char* __first, char* __last, long double __value, chars_format __fmt); 812 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt, int __prec… 815 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt, int __pre… 818 to_chars_result to_chars(char* __first, char* __last, long double __value, chars_format __fmt, int …
|
| H A D | regex | 5516 {return format(__output_iter, __fmt.data(), __fmt.data() + __fmt.size(), __flags);} 5524 format(back_inserter(__r), __fmt.data(), __fmt.data() + __fmt.size(), 5530 format(const char_type* __fmt, 5534 format(back_inserter(__r), __fmt, 5535 __fmt + char_traits<char_type>::length(__fmt), __flags); 6761 __output_iter = __i->format(__output_iter, __fmt, __fmt + __len, __flags); 6796 __fmt.c_str(), __flags); 6809 __fmt, __flags); 6824 __fmt.c_str(), __flags); 6833 const _CharT* __fmt, [all …]
|
| /llvm-project-15.0.7/libcxx/include/__format/ |
| H A D | format_parse_context.h | 33 constexpr explicit basic_format_parse_context(basic_string_view<_CharT> __fmt, 35 : __begin_(__fmt.begin()), 36 __end_(__fmt.end()),
|
| H A D | formatter_floating_point.h | 59 …CPP_HIDE_FROM_ABI char* __to_buffer(char* __first, char* __last, _Tp __value, chars_format __fmt) { in __to_buffer() argument 60 to_chars_result __r = _VSTD::to_chars(__first, __last, __value, __fmt); in __to_buffer() 66 … char* __to_buffer(char* __first, char* __last, _Tp __value, chars_format __fmt, int __precision) { in __to_buffer() argument 67 to_chars_result __r = _VSTD::to_chars(__first, __last, __value, __fmt, __precision); in __to_buffer()
|