Lines Matching refs:__fmt
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());
1516 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1535 char __fmt[8] = {'%', 0};
1537 this->__format_int(__fmt+1, __len, false, __iob.flags());
1543 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1562 char __fmt[8] = {'%', 0};
1564 bool __specify_precision = this->__format_float(__fmt+1, __len, __iob.flags());
1570 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1573 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1578 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1580 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1613 char __fmt[8] = {'%', 0};
1615 bool __specify_precision = this->__format_float(__fmt+1, __len, __iob.flags());
1621 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1624 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1629 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1631 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1664 char __fmt[6] = "%p";
1667 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1822 char __fmt, char __mod = 0) const
1824 return do_get(__b, __e, __iob, __err, __tm, __fmt, __mod);
1850 char __fmt, char __mod) const;
2210 const char_type __fmt[] = {'%', 'H', ':', '%', 'M', ':', '%', 'S'};
2211 return get(__b, __e, __iob, __err, __tm, __fmt, __fmt + sizeof(__fmt)/sizeof(__fmt[0]));
2221 const string_type& __fmt = this->__x();
2222 return get(__b, __e, __iob, __err, __tm, __fmt.data(), __fmt.data() + __fmt.size());
2266 char __fmt, char) const
2270 switch (__fmt)
2409 string_type __analyze(char __fmt, const ctype<_CharT>&);
2484 char __fmt, char __mod) const;
2486 char __fmt, char __mod) const;
2507 const tm* __tm, char __fmt, char __mod = 0) const
2509 return do_put(__s, __iob, __fl, __tm, __fmt, __mod);
2518 char __fmt, char __mod) const;
2552 char __fmt = __ct.narrow(*__pb, 0);
2553 if (__fmt == 'E' || __fmt == 'O')
2561 __mod = __fmt;
2562 __fmt = __ct.narrow(*__pb, 0);
2564 __s = do_put(__s, __iob, __fl, __tm, __fmt, __mod);
2576 char __fmt, char __mod) const
2581 __do_put(__nb, __ne, __tm, __fmt, __mod);