Home
last modified time | relevance | path

Searched refs:__tm (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/
H A Dtime.h119 …get_time(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) const { in get_time() argument
120 return do_get_time(__b, __e, __iob, __err, __tm); in get_time()
124 …get_date(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) const { in get_date() argument
125 return do_get_date(__b, __e, __iob, __err, __tm); in get_date()
129 …get_weekday(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) con… in get_weekday() argument
130 return do_get_weekday(__b, __e, __iob, __err, __tm); in get_weekday()
134 …get_monthname(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) c… in get_monthname() argument
135 return do_get_monthname(__b, __e, __iob, __err, __tm); in get_monthname()
139 …get_year(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) const { in get_year() argument
140 return do_get_year(__b, __e, __iob, __err, __tm); in get_year()
[all …]
H A Dlocale_base_api.h247 __strftime(char* __s, size_t __max, const char* __format, const tm* __tm, __locale_t __loc) { in __strftime() argument
248 return strftime_l(__s, __max, __format, __tm, __loc); in __strftime()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dlocale1562 …get_time(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) const {
1563 return do_get_time(__b, __e, __iob, __err, __tm);
1567 …get_date(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) const {
1568 return do_get_date(__b, __e, __iob, __err, __tm);
1572 …get_weekday(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) con…
1573 return do_get_weekday(__b, __e, __iob, __err, __tm);
1577 …get_monthname(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) c…
1578 return do_get_monthname(__b, __e, __iob, __err, __tm);
1582 …get_year(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) const {
1583 return do_get_year(__b, __e, __iob, __err, __tm);
[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);
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/support/no_locale/
H A Dcharacters.h88 __strftime(char* __s, size_t __max, const char* __format, const struct tm* __tm, __locale_t) { in __strftime() argument
89 return std::strftime(__s, __max, __format, __tm); in __strftime()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__support/xlocale/
H A D__posix_l_fallback.h93 strftime_l(char* __s, size_t __max, const char* __format, const struct tm* __tm, locale_t) { in strftime_l() argument
94 return ::strftime(__s, __max, __format, __tm); in strftime_l()
/freebsd/contrib/llvm-project/libcxx/include/
H A Diomanip333 _LIBCPP_HIDE_FROM_ABI __iom_t9(tm* __tm, const _CharT* __fmt) : __tm_(__tm), __fmt_(__fmt) {}
363 inline _LIBCPP_HIDE_FROM_ABI __iom_t9<_CharT> get_time(tm* __tm, const _CharT* __fmt) {
364 return __iom_t9<_CharT>(__tm, __fmt);
382 …_LIBCPP_HIDE_FROM_ABI __iom_t10(const tm* __tm, const _CharT* __fmt) : __tm_(__tm), __fmt_(__fmt) …
412 inline _LIBCPP_HIDE_FROM_ABI __iom_t10<_CharT> put_time(const tm* __tm, const _CharT* __fmt) {
413 return __iom_t10<_CharT>(__tm, __fmt);
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/support/
H A Dbsd_like.h148 __strftime(char* __s, size_t __max, const char* __format, const struct tm* __tm, __locale_t __loc) { in __strftime() argument
149 return ::strftime_l(__s, __max, __format, __tm, __loc); in __strftime()
H A Dlinux.h175 __strftime(char* __s, size_t __max, const char* __format, const struct tm* __tm, __locale_t __loc) { in __strftime() argument
176 return strftime_l(__s, __max, __format, __tm, __loc); in __strftime()
H A Dwindows.h248 __strftime(char* __ret, size_t __n, const char* __format, const struct tm* __tm, __locale_t __loc) { in __strftime() argument
249 return ::_strftime_l(__ret, __n, __format, __tm, __loc); in __strftime()
/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp4956 void __time_put::__do_put(char* __nb, char*& __ne, const tm* __tm, char __fmt, char __mod) const { in __do_put() argument
4960 size_t n = __locale::__strftime(__nb, countof(__nb, __ne), fmt, __tm, __loc_); in __do_put()
4965 void __time_put::__do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, char __fmt, char __mod) co… in __do_put() argument
4968 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()