Home
last modified time | relevance | path

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

/external/libcxx/include/
Dlocale1202 static void __format_int(char* __fmt, const char* __len, bool __signd,
1204 static bool __format_float(char* __fmt, const char* __len,
1547 char __fmt[6] = {'%', 0};
1549 this->__format_int(__fmt+1, __len, true, __iob.flags());
1555 int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1557 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v);
1577 char __fmt[8] = {'%', 0};
1579 this->__format_int(__fmt+1, __len, true, __iob.flags());
1585 int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1587 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v);
[all …]
Diomanip409 __iom_t9(tm* __tm, const _CharT* __fmt)
410 : __tm_(__tm), __fmt_(__fmt) {}
450 get_time(tm* __tm, const _CharT* __fmt)
452 return __iom_t9<_CharT>(__tm, __fmt);
470 __iom_t10(const tm* __tm, const _CharT* __fmt)
471 : __tm_(__tm), __fmt_(__fmt) {}
510 put_time(const tm* __tm, const _CharT* __fmt)
512 return __iom_t10<_CharT>(__tm, __fmt);
Dregex5337 format(_OutputIter __out, const basic_string<char_type, _ST, _SA>& __fmt,
5339 {return format(__out, __fmt.data(), __fmt.data() + __fmt.size(), __flags);}
5343 format(const basic_string<char_type, _ST, _SA>& __fmt,
5347 format(back_inserter(__r), __fmt.data(), __fmt.data() + __fmt.size(),
5353 format(const char_type* __fmt,
5357 format(back_inserter(__r), __fmt,
5358 __fmt + char_traits<char_type>::length(__fmt), __flags);
6488 const basic_regex<_CharT, _Traits>& __e, const _CharT* __fmt,
6502 for (size_t __len = char_traits<_CharT>::length(__fmt); __i != __eof; ++__i)
6506 __out = __i->format(__out, __fmt, __fmt + __len, __flags);
[all …]
/external/libcxx/include/support/ibm/
Dxlocale.h269 size_t strftime_l(char *__s, size_t __size, const char *__fmt, in strftime_l() argument
271 return __xstrftime(locale, __s, __size, __fmt, __tm); in strftime_l()
/external/libcxx/src/support/solaris/
Dxlocale.c98 size_t strftime_l(char *__s, size_t __size, const char *__fmt, const struct tm in strftime_l() argument
102 __s, __size, __fmt, __tm); in strftime_l()
/external/libcxx/include/support/solaris/
Dxlocale.h103 size_t strftime_l(char *__s, size_t __size, const char *__fmt, const struct tm
/external/libcxx/src/
Dlocale.cpp5400 char __fmt, char __mod) const in __do_put() argument
5402 char fmt[] = {'%', __fmt, __mod, 0}; in __do_put()
5411 char __fmt, char __mod) const in __do_put() argument
5415 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()