Searched refs:__fmt (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/include/ |
D | locale | 1055 static void __format_int(char* __fmt, const char* __len, bool __signd, 1057 static bool __format_float(char* __fmt, const char* __len, 1400 char __fmt[6] = {'%', 0}; 1402 this->__format_int(__fmt+1, __len, true, __iob.flags()); 1407 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); 1426 char __fmt[8] = {'%', 0}; 1428 this->__format_int(__fmt+1, __len, true, __iob.flags()); 1433 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); 1452 char __fmt[6] = {'%', 0}; 1454 this->__format_int(__fmt+1, __len, false, __iob.flags()); [all …]
|
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);
|
D | regex | 5277 format(_OutputIter __output, const basic_string<char_type, _ST, _SA>& __fmt, 5279 {return format(__output, __fmt.data(), __fmt.data() + __fmt.size(), __flags);} 5283 format(const basic_string<char_type, _ST, _SA>& __fmt, 5287 format(back_inserter(__r), __fmt.data(), __fmt.data() + __fmt.size(), 5293 format(const char_type* __fmt, 5297 format(back_inserter(__r), __fmt, 5298 __fmt + char_traits<char_type>::length(__fmt), __flags); 6470 const basic_regex<_CharT, _Traits>& __e, const _CharT* __fmt, 6484 for (size_t __len = char_traits<_CharT>::length(__fmt); __i != __eof; ++__i) 6488 __output = __i->format(__output, __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 | 5429 char __fmt, char __mod) const in __do_put() argument 5431 char fmt[] = {'%', __fmt, __mod, 0}; in __do_put() 5440 char __fmt, char __mod) const in __do_put() argument 5444 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()
|