Lines Matching refs:basic_ostringstream

149 // Class template basic_ostringstream [ostringstream]
151 class basic_ostringstream
164 … explicit basic_ostringstream(ios_base::openmode which = ios_base::out); // before C++20
165 basic_ostringstream() : basic_ostringstream(ios_base::out) {} // C++20
166 explicit basic_ostringstream(ios_base::openmode which); // C++20
167 explicit basic_ostringstream(const basic_string<char_type, traits_type, allocator_type>& s,
169 basic_ostringstream(ios_base::openmode which, const allocator_type& a); // C++20
170 explicit basic_ostringstream(basic_string<char_type, traits_type, allocator_type>&& s,
173basic_ostringstream(const basic_string<char_type, traits_type, SAlloc>& s, const allocator_type& a)
174 : basic_ostringstream(s, ios_base::out, a) {} // C++20
176 basic_ostringstream(const basic_string<char_type, traits_type, SAlloc>& s,
179 explicit basic_ostringstream(const basic_string<char_type, traits_type, SAlloc>& s,
181 basic_ostringstream(basic_ostringstream&& rhs);
184 basic_ostringstream& operator=(basic_ostringstream&& rhs);
185 void swap(basic_ostringstream& rhs);
202 void swap(basic_ostringstream<charT, traits, Allocator>& x,
203 basic_ostringstream<charT, traits, Allocator>& y);
205 typedef basic_ostringstream<char> ostringstream;
206 typedef basic_ostringstream<wchar_t> wostringstream;
882 // Class template basic_ostringstream [ostringstream]
885 class _LIBCPP_TEMPLATE_VIS basic_ostringstream : public basic_ostream<_CharT, _Traits> {
901 …_LIBCPP_HIDE_FROM_ABI basic_ostringstream() : basic_ostream<_CharT, _Traits>(&__sb_), __sb_(ios_ba…
903 _LIBCPP_HIDE_FROM_ABI explicit basic_ostringstream(ios_base::openmode __wch)
906 …_LIBCPP_HIDE_FROM_ABI explicit basic_ostringstream(const string_type& __s, ios_base::openmode __wc…
910 _LIBCPP_HIDE_FROM_ABI basic_ostringstream(ios_base::openmode __wch, const _Allocator& __a)
913 …_LIBCPP_HIDE_FROM_ABI explicit basic_ostringstream(string_type&& __s, ios_base::openmode __wch = i…
917 …_LIBCPP_HIDE_FROM_ABI basic_ostringstream(const basic_string<_CharT, _Traits, _SAlloc>& __s, const…
918 : basic_ostringstream(__s, ios_base::out, __a) {}
921 _LIBCPP_HIDE_FROM_ABI basic_ostringstream(
927 …_LIBCPP_HIDE_FROM_ABI explicit basic_ostringstream(const basic_string<_CharT, _Traits, _SAlloc>& _…
932 _LIBCPP_HIDE_FROM_ABI basic_ostringstream(basic_ostringstream&& __rhs)
938 basic_ostringstream& operator=(basic_ostringstream&& __rhs) {
944 _LIBCPP_HIDE_FROM_ABI void swap(basic_ostringstream& __rhs) {
986 swap(basic_ostringstream<_CharT, _Traits, _Allocator>& __x, basic_ostringstream<_CharT, _Traits, _A…
1103 extern template class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_ostringstream<char>;