Searched refs:__fmt (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/include/ |
D | locale | 1109 static void __format_int(char* __fmt, const char* __len, bool __signd, 1111 static bool __format_float(char* __fmt, const char* __len, 1454 char __fmt[6] = {'%', 0}; 1456 this->__format_int(__fmt+1, __len, true, __iob.flags()); 1462 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); 1481 char __fmt[8] = {'%', 0}; 1483 this->__format_int(__fmt+1, __len, true, __iob.flags()); 1489 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); 1508 char __fmt[6] = {'%', 0}; 1510 this->__format_int(__fmt+1, __len, false, __iob.flags()); [all …]
|
D | iomanip | 411 __iom_t9(tm* __tm, const _CharT* __fmt) 412 : __tm_(__tm), __fmt_(__fmt) {} 452 get_time(tm* __tm, const _CharT* __fmt) 454 return __iom_t9<_CharT>(__tm, __fmt); 472 __iom_t10(const tm* __tm, const _CharT* __fmt) 473 : __tm_(__tm), __fmt_(__fmt) {} 512 put_time(const tm* __tm, const _CharT* __fmt) 514 return __iom_t10<_CharT>(__tm, __fmt);
|
D | regex | 5308 format(_OutputIter __output_iter, const basic_string<char_type, _ST, _SA>& __fmt, 5310 {return format(__output_iter, __fmt.data(), __fmt.data() + __fmt.size(), __flags);} 5314 format(const basic_string<char_type, _ST, _SA>& __fmt, 5318 format(back_inserter(__r), __fmt.data(), __fmt.data() + __fmt.size(), 5324 format(const char_type* __fmt, 5328 format(back_inserter(__r), __fmt, 5329 __fmt + char_traits<char_type>::length(__fmt), __flags); 6521 const basic_regex<_CharT, _Traits>& __e, const _CharT* __fmt, 6535 for (size_t __len = char_traits<_CharT>::length(__fmt); __i != __eof; ++__i) 6539 __output_iter = __i->format(__output_iter, __fmt, __fmt + __len, __flags); [all …]
|
/external/libcxx/include/support/ibm/ |
D | xlocale.h | 214 size_t strftime_l(char *__s, size_t __size, const char *__fmt, in strftime_l() argument 216 return __xstrftime(locale, __s, __size, __fmt, __tm); in strftime_l()
|
/external/libcxx/src/ |
D | locale.cpp | 5441 char __fmt, char __mod) const in __do_put() argument 5443 char fmt[] = {'%', __fmt, __mod, 0}; in __do_put() 5452 char __fmt, char __mod) const in __do_put() argument 5456 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()
|