Lines Matching refs:_Traits

188 template <class _CharT, class _Traits, class _Allocator>
190 : public basic_streambuf<_CharT, _Traits>
194 typedef _Traits traits_type;
238 template <class _CharT, class _Traits, class _Allocator>
240 basic_stringbuf<_CharT, _Traits, _Allocator>::basic_stringbuf(ios_base::openmode __wch)
247 template <class _CharT, class _Traits, class _Allocator>
249 basic_stringbuf<_CharT, _Traits, _Allocator>::basic_stringbuf(const string_type& __s,
259 template <class _CharT, class _Traits, class _Allocator>
260 basic_stringbuf<_CharT, _Traits, _Allocator>::basic_stringbuf(basic_stringbuf&& __rhs)
300 template <class _CharT, class _Traits, class _Allocator>
301 basic_stringbuf<_CharT, _Traits, _Allocator>&
302 basic_stringbuf<_CharT, _Traits, _Allocator>::operator=(basic_stringbuf&& __rhs)
345 template <class _CharT, class _Traits, class _Allocator>
347 basic_stringbuf<_CharT, _Traits, _Allocator>::swap(basic_stringbuf& __rhs)
422 template <class _CharT, class _Traits, class _Allocator>
425 swap(basic_stringbuf<_CharT, _Traits, _Allocator>& __x,
426 basic_stringbuf<_CharT, _Traits, _Allocator>& __y)
431 template <class _CharT, class _Traits, class _Allocator>
432 basic_string<_CharT, _Traits, _Allocator>
433 basic_stringbuf<_CharT, _Traits, _Allocator>::str() const
446 template <class _CharT, class _Traits, class _Allocator>
448 basic_stringbuf<_CharT, _Traits, _Allocator>::str(const string_type& __s)
471 template <class _CharT, class _Traits, class _Allocator>
472 typename basic_stringbuf<_CharT, _Traits, _Allocator>::int_type
473 basic_stringbuf<_CharT, _Traits, _Allocator>::underflow()
487 template <class _CharT, class _Traits, class _Allocator>
488 typename basic_stringbuf<_CharT, _Traits, _Allocator>::int_type
489 basic_stringbuf<_CharT, _Traits, _Allocator>::pbackfail(int_type __c)
511 template <class _CharT, class _Traits, class _Allocator>
512 typename basic_stringbuf<_CharT, _Traits, _Allocator>::int_type
513 basic_stringbuf<_CharT, _Traits, _Allocator>::overflow(int_type __c)
553 template <class _CharT, class _Traits, class _Allocator>
554 typename basic_stringbuf<_CharT, _Traits, _Allocator>::pos_type
555 basic_stringbuf<_CharT, _Traits, _Allocator>::seekoff(off_type __off,
604 template <class _CharT, class _Traits, class _Allocator>
606 typename basic_stringbuf<_CharT, _Traits, _Allocator>::pos_type
607 basic_stringbuf<_CharT, _Traits, _Allocator>::seekpos(pos_type __sp,
615 template <class _CharT, class _Traits, class _Allocator>
617 : public basic_istream<_CharT, _Traits>
621 typedef _Traits traits_type;
651 template <class _CharT, class _Traits, class _Allocator>
653 basic_istringstream<_CharT, _Traits, _Allocator>::basic_istringstream(ios_base::openmode __wch)
654 : basic_istream<_CharT, _Traits>(&__sb_),
659 template <class _CharT, class _Traits, class _Allocator>
661 basic_istringstream<_CharT, _Traits, _Allocator>::basic_istringstream(const string_type& __s,
663 : basic_istream<_CharT, _Traits>(&__sb_),
670 template <class _CharT, class _Traits, class _Allocator>
672 basic_istringstream<_CharT, _Traits, _Allocator>::basic_istringstream(basic_istringstream&& __rhs)
673 : basic_istream<_CharT, _Traits>(_VSTD::move(__rhs)),
676 basic_istream<_CharT, _Traits>::set_rdbuf(&__sb_);
679 template <class _CharT, class _Traits, class _Allocator>
680 basic_istringstream<_CharT, _Traits, _Allocator>&
681 basic_istringstream<_CharT, _Traits, _Allocator>::operator=(basic_istringstream&& __rhs)
690 template <class _CharT, class _Traits, class _Allocator>
693 basic_istringstream<_CharT, _Traits, _Allocator>::swap(basic_istringstream& __rhs)
699 template <class _CharT, class _Traits, class _Allocator>
702 swap(basic_istringstream<_CharT, _Traits, _Allocator>& __x,
703 basic_istringstream<_CharT, _Traits, _Allocator>& __y)
708 template <class _CharT, class _Traits, class _Allocator>
710 basic_stringbuf<_CharT, _Traits, _Allocator>*
711 basic_istringstream<_CharT, _Traits, _Allocator>::rdbuf() const
716 template <class _CharT, class _Traits, class _Allocator>
718 basic_string<_CharT, _Traits, _Allocator>
719 basic_istringstream<_CharT, _Traits, _Allocator>::str() const
724 template <class _CharT, class _Traits, class _Allocator>
727 basic_istringstream<_CharT, _Traits, _Allocator>::str(const string_type& __s)
734 template <class _CharT, class _Traits, class _Allocator>
736 : public basic_ostream<_CharT, _Traits>
740 typedef _Traits traits_type;
770 template <class _CharT, class _Traits, class _Allocator>
772 basic_ostringstream<_CharT, _Traits, _Allocator>::basic_ostringstream(ios_base::openmode __wch)
773 : basic_ostream<_CharT, _Traits>(&__sb_),
778 template <class _CharT, class _Traits, class _Allocator>
780 basic_ostringstream<_CharT, _Traits, _Allocator>::basic_ostringstream(const string_type& __s,
782 : basic_ostream<_CharT, _Traits>(&__sb_),
789 template <class _CharT, class _Traits, class _Allocator>
791 basic_ostringstream<_CharT, _Traits, _Allocator>::basic_ostringstream(basic_ostringstream&& __rhs)
792 : basic_ostream<_CharT, _Traits>(_VSTD::move(__rhs)),
795 basic_ostream<_CharT, _Traits>::set_rdbuf(&__sb_);
798 template <class _CharT, class _Traits, class _Allocator>
799 basic_ostringstream<_CharT, _Traits, _Allocator>&
800 basic_ostringstream<_CharT, _Traits, _Allocator>::operator=(basic_ostringstream&& __rhs)
809 template <class _CharT, class _Traits, class _Allocator>
812 basic_ostringstream<_CharT, _Traits, _Allocator>::swap(basic_ostringstream& __rhs)
818 template <class _CharT, class _Traits, class _Allocator>
821 swap(basic_ostringstream<_CharT, _Traits, _Allocator>& __x,
822 basic_ostringstream<_CharT, _Traits, _Allocator>& __y)
827 template <class _CharT, class _Traits, class _Allocator>
829 basic_stringbuf<_CharT, _Traits, _Allocator>*
830 basic_ostringstream<_CharT, _Traits, _Allocator>::rdbuf() const
835 template <class _CharT, class _Traits, class _Allocator>
837 basic_string<_CharT, _Traits, _Allocator>
838 basic_ostringstream<_CharT, _Traits, _Allocator>::str() const
843 template <class _CharT, class _Traits, class _Allocator>
846 basic_ostringstream<_CharT, _Traits, _Allocator>::str(const string_type& __s)
853 template <class _CharT, class _Traits, class _Allocator>
855 : public basic_iostream<_CharT, _Traits>
859 typedef _Traits traits_type;
889 template <class _CharT, class _Traits, class _Allocator>
891 basic_stringstream<_CharT, _Traits, _Allocator>::basic_stringstream(ios_base::openmode __wch)
892 : basic_iostream<_CharT, _Traits>(&__sb_),
897 template <class _CharT, class _Traits, class _Allocator>
899 basic_stringstream<_CharT, _Traits, _Allocator>::basic_stringstream(const string_type& __s,
901 : basic_iostream<_CharT, _Traits>(&__sb_),
908 template <class _CharT, class _Traits, class _Allocator>
910 basic_stringstream<_CharT, _Traits, _Allocator>::basic_stringstream(basic_stringstream&& __rhs)
911 : basic_iostream<_CharT, _Traits>(_VSTD::move(__rhs)),
914 basic_istream<_CharT, _Traits>::set_rdbuf(&__sb_);
917 template <class _CharT, class _Traits, class _Allocator>
918 basic_stringstream<_CharT, _Traits, _Allocator>&
919 basic_stringstream<_CharT, _Traits, _Allocator>::operator=(basic_stringstream&& __rhs)
928 template <class _CharT, class _Traits, class _Allocator>
931 basic_stringstream<_CharT, _Traits, _Allocator>::swap(basic_stringstream& __rhs)
937 template <class _CharT, class _Traits, class _Allocator>
940 swap(basic_stringstream<_CharT, _Traits, _Allocator>& __x,
941 basic_stringstream<_CharT, _Traits, _Allocator>& __y)
946 template <class _CharT, class _Traits, class _Allocator>
948 basic_stringbuf<_CharT, _Traits, _Allocator>*
949 basic_stringstream<_CharT, _Traits, _Allocator>::rdbuf() const
954 template <class _CharT, class _Traits, class _Allocator>
956 basic_string<_CharT, _Traits, _Allocator>
957 basic_stringstream<_CharT, _Traits, _Allocator>::str() const
962 template <class _CharT, class _Traits, class _Allocator>
965 basic_stringstream<_CharT, _Traits, _Allocator>::str(const string_type& __s)