Home | History | Annotate | Download | only in stl

Lines Matching defs:_CharT

34 // to a buffer of char, transform the buffer to _CharT, and then copy
40 template <class _CharT, class _OutputIter>
42 __copy_float_and_fill(const _CharT* __first, const _CharT* __last,
45 streamsize __width, _CharT __fill,
46 _CharT __xplus, _CharT __xminus) {
113 template <class _CharT, class _OutputIter, class _Float>
116 _CharT __fill, _Float __x) {
121 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc());
140 template <class _CharT>
141 void _STLP_CALL __get_money_digits(_STLP_BASIC_IOSTRING(_CharT) &__buf, ios_base& __f, _STLP_LONGEST_FLOAT_TYPE __x)
146 template <class _CharT, class _OutputIter>
148 __copy_integer_and_fill(const _CharT* __buf, ptrdiff_t __len,
150 ios_base::fmtflags __flg, streamsize __wid, _CharT __fill,
151 _CharT __xplus, _CharT __xminus) {
370 template <class _CharT, class _OutputIter, class _Integer>
372 __do_put_integer(_OutputIter __s, ios_base& __f, _CharT __fill, _Integer __x) {
384 template <class _CharT, class _OutputIter>
386 __do_put_bool(_OutputIter __s, ios_base& __f, _CharT __fill, bool __x) {
387 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc());
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename();
414 template <class _CharT, class _OutputIterator>
415 locale::id num_put<_CharT, _OutputIterator>::id;
418 template <class _CharT, class _OutputIter>
420 num_put<_CharT, _OutputIter>::do_put(_OutputIter __s, ios_base& __f, _CharT __fill,
430 template <class _CharT, class _OutputIter>
432 num_put<_CharT, _OutputIter>::do_put(_OutputIter __s, ios_base& __f, _CharT __fill,
436 template <class _CharT, class _OutputIter>
438 num_put<_CharT, _OutputIter>::do_put(_OutputIter __s, ios_base& __f, _CharT __fill,
442 template <class _CharT, class _OutputIter>
444 num_put<_CharT, _OutputIter>::do_put(_OutputIter __s, ios_base& __f, _CharT __fill,
449 template <class _CharT, class _OutputIter>
451 num_put<_CharT, _OutputIter>::do_put(_OutputIter __s, ios_base& __f, _CharT __fill,
457 template <class _CharT, class _OutputIter>
459 num_put<_CharT, _OutputIter>::do_put(_OutputIter __s, ios_base& __f, _CharT __fill,
463 template <class _CharT, class _OutputIter>
465 num_put<_CharT, _OutputIter>::do_put(_OutputIter __s, ios_base& __f, _CharT __fill,
473 template <class _CharT, class _OutputIter>
475 num_put<_CharT, _OutputIter>::do_put(_OutputIter __s, ios_base& __f, _CharT /*__fill*/,
477 const ctype<_CharT>& __c_type = use_facet<ctype<_CharT> >(__f.getloc());