Lines Matching refs:basic_ostringstream
102 class basic_ostringstream
115 explicit basic_ostringstream(ios_base::openmode which = ios_base::out); // before C++20
116 basic_ostringstream() : basic_ostringstream(ios_base::out) {} // C++20
117 explicit basic_ostringstream(ios_base::openmode which); // C++20
119 explicit basic_ostringstream(const basic_string<char_type, traits_type, allocator_type>& str,
121 basic_ostringstream(basic_ostringstream&& rhs);
124 basic_ostringstream& operator=(basic_ostringstream&& rhs);
125 void swap(basic_ostringstream& rhs);
134 void swap(basic_ostringstream<charT, traits, Allocator>& x,
135 basic_ostringstream<charT, traits, Allocator>& y);
137 typedef basic_ostringstream<char> ostringstream;
138 typedef basic_ostringstream<wchar_t> wostringstream;
702 // basic_ostringstream
705 class _LIBCPP_TEMPLATE_VIS basic_ostringstream
724 basic_ostringstream()
728 explicit basic_ostringstream(ios_base::openmode __wch)
732 explicit basic_ostringstream(const string_type& __s,
739 basic_ostringstream(basic_ostringstream&& __rhs)
747 basic_ostringstream& operator=(basic_ostringstream&& __rhs) {
754 void swap(basic_ostringstream& __rhs) {
777 swap(basic_ostringstream<_CharT, _Traits, _Allocator>& __x,
778 basic_ostringstream<_CharT, _Traits, _Allocator>& __y)
866 extern template class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_ostringstream<char>;