Lines Matching refs:__fmt

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());
1459 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1478 char __fmt[8] = {'%', 0};
1480 this->__format_int(__fmt+1, __len, false, __iob.flags());
1485 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1504 char __fmt[8] = {'%', 0};
1506 bool __specify_precision = this->__format_float(__fmt+1, __len, __iob.flags());
1512 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1515 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1520 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1522 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1555 char __fmt[8] = {'%', 0};
1557 bool __specify_precision = this->__format_float(__fmt+1, __len, __iob.flags());
1563 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1566 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1571 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1573 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1606 char __fmt[6] = "%p";
1609 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1748 char __fmt, char __mod = 0) const
1750 return do_get(__b, __e, __iob, __err, __tm, __fmt, __mod);
1776 char __fmt, char __mod) const;
2136 const char_type __fmt[] = {'%', 'H', ':', '%', 'M', ':', '%', 'S'};
2137 return get(__b, __e, __iob, __err, __tm, __fmt, __fmt + sizeof(__fmt)/sizeof(__fmt[0]));
2147 const string_type& __fmt = this->__x();
2148 return get(__b, __e, __iob, __err, __tm, __fmt.data(), __fmt.data() + __fmt.size());
2192 char __fmt, char) const
2196 switch (__fmt)
2335 string_type __analyze(char __fmt, const ctype<_CharT>&);
2393 char __fmt, char __mod) const;
2395 char __fmt, char __mod) const;
2416 const tm* __tm, char __fmt, char __mod = 0) const
2418 return do_put(__s, __iob, __fl, __tm, __fmt, __mod);
2427 char __fmt, char __mod) const;
2461 char __fmt = __ct.narrow(*__pb, 0);
2462 if (__fmt == 'E' || __fmt == 'O')
2470 __mod = __fmt;
2471 __fmt = __ct.narrow(*__pb, 0);
2473 __s = do_put(__s, __iob, __fl, __tm, __fmt, __mod);
2485 char __fmt, char __mod) const
2490 __do_put(__nb, __ne, __tm, __fmt, __mod);