Lines Matching refs:__fmt
1066 …static void __format_int(char* __fmt, const char* __len, bool __signd, ios_base::fmtflags __flags);
1067 static bool __format_float(char* __fmt, const char* __len, ios_base::fmtflags __flags);
1326 char __fmt[8] = {'%', 0};
1327 this->__format_int(__fmt + 1, __len, is_signed<_Integral>::value, __iob.flags());
1339 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1382 char __fmt[8] = {'%', 0};
1383 bool __specify_precision = this->__format_float(__fmt + 1, __len, __iob.flags());
1392 …__nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1394 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1398 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1400 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1587 …get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm, char __fmt,…
1589 return do_get(__b, __e, __iob, __err, __tm, __fmt, __mod);
1618 …iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm, char __fmt, cha…
1873 const char_type __fmt[] = {'%', 'H', ':', '%', 'M', ':', '%', 'S'};
1874 return get(__b, __e, __iob, __err, __tm, __fmt, __fmt + sizeof(__fmt) / sizeof(__fmt[0]));
1880 const string_type& __fmt = this->__x();
1881 return get(__b, __e, __iob, __err, __tm, __fmt.data(), __fmt.data() + __fmt.size());
1910 …iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm, char __fmt, cha…
1913 switch (__fmt) {
2036 string_type __analyze(char __fmt, const ctype<_CharT>&);
2109 void __do_put(char* __nb, char*& __ne, const tm* __tm, char __fmt, char __mod) const;
2111 void __do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, char __fmt, char __mod) const;
2128 …put(iter_type __s, ios_base& __iob, char_type __fl, const tm* __tm, char __fmt, char __mod = 0) co…
2129 return do_put(__s, __iob, __fl, __tm, __fmt, __mod);
2136 …virtual iter_type do_put(iter_type __s, ios_base&, char_type, const tm* __tm, char __fmt, char __m…
2158 char __fmt = __ct.narrow(*__pb, 0);
2159 if (__fmt == 'E' || __fmt == 'O') {
2165 __mod = __fmt;
2166 __fmt = __ct.narrow(*__pb, 0);
2168 __s = do_put(__s, __iob, __fl, __tm, __fmt, __mod);
2177 iter_type __s, ios_base&, char_type, const tm* __tm, char __fmt, char __mod) const {
2181 __do_put(__nb, __ne, __tm, __fmt, __mod);