• Home
  • Raw
  • Download

Lines Matching refs:__fmt

1107     static void __format_int(char* __fmt, const char* __len, bool __signd,
1109 static bool __format_float(char* __fmt, const char* __len,
1452 char __fmt[6] = {'%', 0};
1454 this->__format_int(__fmt+1, __len, true, __iob.flags());
1460 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1479 char __fmt[8] = {'%', 0};
1481 this->__format_int(__fmt+1, __len, true, __iob.flags());
1487 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1506 char __fmt[6] = {'%', 0};
1508 this->__format_int(__fmt+1, __len, false, __iob.flags());
1514 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1533 char __fmt[8] = {'%', 0};
1535 this->__format_int(__fmt+1, __len, false, __iob.flags());
1541 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1560 char __fmt[8] = {'%', 0};
1562 bool __specify_precision = this->__format_float(__fmt+1, __len, __iob.flags());
1568 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1571 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1576 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1578 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1611 char __fmt[8] = {'%', 0};
1613 bool __specify_precision = this->__format_float(__fmt+1, __len, __iob.flags());
1619 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1622 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1627 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1629 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1662 char __fmt[6] = "%p";
1665 int __nc = __libcpp_snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1820 char __fmt, char __mod = 0) const
1822 return do_get(__b, __e, __iob, __err, __tm, __fmt, __mod);
1848 char __fmt, char __mod) const;
2208 const char_type __fmt[] = {'%', 'H', ':', '%', 'M', ':', '%', 'S'};
2209 return get(__b, __e, __iob, __err, __tm, __fmt, __fmt + sizeof(__fmt)/sizeof(__fmt[0]));
2219 const string_type& __fmt = this->__x();
2220 return get(__b, __e, __iob, __err, __tm, __fmt.data(), __fmt.data() + __fmt.size());
2264 char __fmt, char) const
2268 switch (__fmt)
2407 string_type __analyze(char __fmt, const ctype<_CharT>&);
2465 char __fmt, char __mod) const;
2467 char __fmt, char __mod) const;
2488 const tm* __tm, char __fmt, char __mod = 0) const
2490 return do_put(__s, __iob, __fl, __tm, __fmt, __mod);
2499 char __fmt, char __mod) const;
2533 char __fmt = __ct.narrow(*__pb, 0);
2534 if (__fmt == 'E' || __fmt == 'O')
2542 __mod = __fmt;
2543 __fmt = __ct.narrow(*__pb, 0);
2545 __s = do_put(__s, __iob, __fl, __tm, __fmt, __mod);
2557 char __fmt, char __mod) const
2562 __do_put(__nb, __ne, __tm, __fmt, __mod);