/openbsd-src/gnu/llvm/libcxx/include/ |
H A D | sstream | 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, [all …]
|
H A D | iosfwd | 41 class basic_ostringstream; 63 typedef basic_ostringstream<char> ostringstream; 78 typedef basic_ostringstream<wchar_t> wostringstream; 131 class _LIBCPP_TEMPLATE_VIS basic_ostringstream; 162 typedef basic_ostringstream<char> ostringstream; 178 typedef basic_ostringstream<wchar_t> wostringstream; 204 …ringstream) _LIBCPP_IF_WIDE_CHARACTERS(_LIBCPP_PREFERRED_NAME(wostringstream)) basic_ostringstream;
|
H A D | complex | 243 # include <sstream> // for std::basic_ostringstream 1516 basic_ostringstream<_CharT, _Traits> __s;
|
/openbsd-src/gnu/gcc/libstdc++-v3/src/ |
H A D | sstream-inst.cc | 41 template class basic_ostringstream<char>; variable 47 template class basic_ostringstream<wchar_t>; variable
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/src/ |
H A D | sstream-inst.cc | 52 template class basic_ostringstream<char>; variable 54 template class basic_ostringstream<wchar_t>; variable
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/std/ |
H A D | std_iosfwd.h | 79 class basic_ostringstream; variable 143 typedef basic_ostringstream<char> ostringstream; ///< @isiosfwd 158 typedef basic_ostringstream<wchar_t> wostringstream; ///< @isiosfwd
|
H A D | std_sstream.h | 407 class basic_ostringstream : public basic_ostream<_CharT, _Traits> 451 basic_ostringstream(ios_base::openmode __mode = ios_base::out) 471 basic_ostringstream(const __string_type& __str, 482 ~basic_ostringstream() in ~basic_ostringstream()
|
H A D | std_complex.h | 389 basic_ostringstream<_CharT, _Traits> __s;
|
/openbsd-src/gnu/gcc/libstdc++-v3/include/std/ |
H A D | std_iosfwd.h | 79 class basic_ostringstream; variable 142 typedef basic_ostringstream<char> ostringstream; ///< @isiosfwd 157 typedef basic_ostringstream<wchar_t> wostringstream; ///< @isiosfwd
|
H A D | std_sstream.h | 374 class basic_ostringstream : public basic_ostream<_CharT, _Traits> 412 basic_ostringstream(ios_base::openmode __mode = ios_base::out) 432 basic_ostringstream(const __string_type& __str, 443 ~basic_ostringstream() in ~basic_ostringstream()
|
H A D | std_complex.h | 520 basic_ostringstream<_CharT, _Traits> __s;
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/27_io/ |
H A D | ostringstream.cc | 53 template class basic_ostringstream<type_t, char_traits<type_t> >; variable
|
H A D | ios_init.cc | 279 std::basic_ostringstream<unsigned short> oss(str); in test02() 355 basic_ostringstream<unsigned char> oss_uc; in test03()
|
/openbsd-src/gnu/llvm/libcxx/src/ |
H A D | ios.instantiations.cpp | 37 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostringstream<char>; variable
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/ |
H A D | sstream.tcc | 231 extern template class basic_ostringstream<char>; 237 extern template class basic_ostringstream<wchar_t>;
|
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/ |
H A D | sstream.tcc | 266 extern template class basic_ostringstream<char>; 272 extern template class basic_ostringstream<wchar_t>;
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/26_numerics/ |
H A D | complex_inserters_extractors.cc | 108 typedef std::basic_ostringstream<char, gnu_char_traits> gnu_sstream;
|
/openbsd-src/gnu/llvm/libcxx/include/__chrono/ |
H A D | ostream.h | 97 basic_ostringstream<_CharT, _Traits> __s;
|
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/ |
H A D | CHECKLIST | 4967 class basic_ostringstream; 4997 X typedef basic_ostringstream<char> ostringstream; 5009 X typedef basic_ostringstream<wchar_t> wostringstream; 5586 X class basic_ostringstream; 5587 T typedef basic_ostringstream<char> ostringstream; 5588 T typedef basic_ostringstream<wchar_t> wostringstream; 5658 27.7.3 Class basic_ostringstream [lib.ostringstream] 5662 X class basic_ostringstream : public basic_ostream<charT,traits> { 5671 S explicit basic_ostringstream(ios_base::openmode which = ios_base::out); 5672 S explicit basic_ostringstream(
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/ |
H A D | CHECKLIST | 4967 class basic_ostringstream; 4997 X typedef basic_ostringstream<char> ostringstream; 5009 X typedef basic_ostringstream<wchar_t> wostringstream; 5586 X class basic_ostringstream; 5587 T typedef basic_ostringstream<char> ostringstream; 5588 T typedef basic_ostringstream<wchar_t> wostringstream; 5658 27.7.3 Class basic_ostringstream [lib.ostringstream] 5662 X class basic_ostringstream : public basic_ostream<charT,traits> { 5671 S explicit basic_ostringstream(ios_base::openmode which = ios_base::out); 5672 S explicit basic_ostringstream(
|
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Inclusions/ |
H A D | StdSymbolMap.inc | 154 SYMBOL(basic_ostringstream, std::, <sstream>)
|
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/ |
H A D | rope | 163 // behave a little like basic_ostringstream<sequence::value_type> and a
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/ |
H A D | ChangeLog-2001 | 1876 * include/bits/std_sstream.h (basic_ostringstream): Fix ctor.
|
H A D | ChangeLog-2000 | 9512 * bits/std_sstream.h (basic_ostringstream::str): Fix typo of extra
|