Lines Matching refs:basic_ostringstream
104 // Class template basic_ostringstream [ostringstream]
106 class basic_ostringstream
119 explicit basic_ostringstream(ios_base::openmode which = ios_base::out); // before C++20
120 basic_ostringstream() : basic_ostringstream(ios_base::out) {} // C++20
121 explicit basic_ostringstream(ios_base::openmode which); // C++20
123 explicit basic_ostringstream(const basic_string<char_type, traits_type, allocator_type>& str,
125 basic_ostringstream(basic_ostringstream&& rhs);
128 basic_ostringstream& operator=(basic_ostringstream&& rhs);
129 void swap(basic_ostringstream& rhs);
138 void swap(basic_ostringstream<charT, traits, Allocator>& x,
139 basic_ostringstream<charT, traits, Allocator>& y);
141 typedef basic_ostringstream<char> ostringstream;
142 typedef basic_ostringstream<wchar_t> wostringstream;
707 // Class template basic_ostringstream [ostringstream]
710 class _LIBCPP_TEMPLATE_VIS basic_ostringstream
729 basic_ostringstream()
733 explicit basic_ostringstream(ios_base::openmode __wch)
737 explicit basic_ostringstream(const string_type& __s,
744 basic_ostringstream(basic_ostringstream&& __rhs)
752 basic_ostringstream& operator=(basic_ostringstream&& __rhs) {
759 void swap(basic_ostringstream& __rhs) {
782 swap(basic_ostringstream<_CharT, _Traits, _Allocator>& __x,
783 basic_ostringstream<_CharT, _Traits, _Allocator>& __y)
871 extern template class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_ostringstream<char>;