/openbsd-src/gnu/llvm/libcxx/include/ |
H A D | sstream | 16 // Class template basic_stringbuf [stringbuf] 18 class basic_stringbuf 30 … explicit basic_stringbuf(ios_base::openmode which = ios_base::in | ios_base::out); // before C++20 31 basic_stringbuf() : basic_stringbuf(ios_base::in | ios_base::out) {} // C++20 32 explicit basic_stringbuf(ios_base::openmode which); // C++20 33 explicit basic_stringbuf(const basic_string<char_type, traits_type, allocator_type>& str, 35 basic_stringbuf(basic_stringbuf&& rhs); 38 basic_stringbuf& operator=(basic_stringbuf&& rhs); 39 void swap(basic_stringbuf& rhs); 59 void swap(basic_stringbuf<charT, traits, Allocator>& x, [all …]
|
H A D | iosfwd | 37 class basic_stringbuf; 61 typedef basic_stringbuf<char> stringbuf; 76 typedef basic_stringbuf<wchar_t> wstringbuf; 125 class _LIBCPP_TEMPLATE_VIS basic_stringbuf; 160 typedef basic_stringbuf<char> stringbuf; 176 typedef basic_stringbuf<wchar_t> wstringbuf; 200 …RED_NAME(stringbuf) _LIBCPP_IF_WIDE_CHARACTERS(_LIBCPP_PREFERRED_NAME(wstringbuf)) basic_stringbuf;
|
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/ |
H A D | sstream.tcc | 50 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type in _GLIBCXX_BEGIN_NAMESPACE() 51 basic_stringbuf<_CharT, _Traits, _Alloc>:: in _GLIBCXX_BEGIN_NAMESPACE() 84 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type 85 basic_stringbuf<_CharT, _Traits, _Alloc>:: 135 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type 136 basic_stringbuf<_CharT, _Traits, _Alloc>:: 153 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type 154 basic_stringbuf<_CharT, _Traits, _Alloc>:: 200 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type 201 basic_stringbuf<_CharT, _Traits, _Alloc>:: [all …]
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/ |
H A D | sstream.tcc | 45 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type 46 basic_stringbuf<_CharT, _Traits, _Alloc>:: 79 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type 80 basic_stringbuf<_CharT, _Traits, _Alloc>:: 119 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type 120 basic_stringbuf<_CharT, _Traits, _Alloc>:: 179 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type 180 basic_stringbuf<_CharT, _Traits, _Alloc>:: 229 extern template class basic_stringbuf<char>; 235 extern template class basic_stringbuf<wchar_t>;
|
/openbsd-src/gnu/gcc/libstdc++-v3/src/ |
H A D | sstream-inst.cc | 39 template class basic_stringbuf<char>; 45 template class basic_stringbuf<wchar_t>; variable
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/src/ |
H A D | sstream-inst.cc | 40 template class basic_stringbuf<char>; variable 42 template class basic_stringbuf<wchar_t>; variable
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/std/ |
H A D | std_sstream.h | 62 class basic_stringbuf : public basic_streambuf<_CharT, _Traits> 106 basic_stringbuf(ios_base::openmode __mode = ios_base::in | ios_base::out) 119 basic_stringbuf(const __string_type& __str, 304 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; 423 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; 542 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type;
|
H A D | std_iosfwd.h | 71 class basic_stringbuf; variable 141 typedef basic_stringbuf<char> stringbuf; ///< @isiosfwd 156 typedef basic_stringbuf<wchar_t> wstringbuf; ///< @isiosfwd
|
/openbsd-src/gnu/gcc/libstdc++-v3/include/std/ |
H A D | std_sstream.h | 62 class basic_stringbuf : public basic_streambuf<_CharT, _Traits> in _GLIBCXX_BEGIN_NAMESPACE() 100 basic_stringbuf(ios_base::openmode __mode = ios_base::in | ios_base::out) in _GLIBCXX_BEGIN_NAMESPACE() 113 basic_stringbuf(const __string_type& __str, in _GLIBCXX_BEGIN_NAMESPACE() 276 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; 389 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; 502 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type;
|
H A D | std_iosfwd.h | 71 class basic_stringbuf; variable 140 typedef basic_stringbuf<char> stringbuf; ///< @isiosfwd 155 typedef basic_stringbuf<wchar_t> wstringbuf; ///< @isiosfwd
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/27_io/ |
H A D | stringbuf.cc | 55 template class basic_stringbuf<type_t, char_traits<type_t> >; variable 56 template class basic_stringbuf<pod_char, char_traits<pod_char> >; variable
|
/openbsd-src/gnu/llvm/libcxx/src/ |
H A D | ios.instantiations.cpp | 35 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_stringbuf<char>; variable
|
/openbsd-src/gnu/gcc/libstdc++-v3/config/abi/pre/ |
H A D | gnu.ver | 53 # std::basic_stringbuf 223 # std::basic_stringbuf
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/ |
H A D | linker-map.gnu | 40 std::basic_stringbuf*;
|
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/ |
H A D | CHECKLIST | 4959 class basic_stringbuf; 4995 X typedef basic_stringbuf<char> stringbuf; 5007 X typedef basic_stringbuf<wchar_t> wstringbuf; 5572 class basic_stringbuf; 5574 T typedef basic_stringbuf<char> stringbuf; 5575 T typedef basic_stringbuf<wchar_t> wstringbuf; 5596 27.7.1 Template class basic_stringbuf [lib.stringbuf] 5600 X class basic_stringbuf : public basic_streambuf<charT,traits> { 5608 S explicit basic_stringbuf(ios_base::openmode which 5610 S explicit basic_stringbuf [all …]
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/ |
H A D | CHECKLIST | 4959 class basic_stringbuf; 4995 X typedef basic_stringbuf<char> stringbuf; 5007 X typedef basic_stringbuf<wchar_t> wstringbuf; 5572 class basic_stringbuf; 5574 T typedef basic_stringbuf<char> stringbuf; 5575 T typedef basic_stringbuf<wchar_t> wstringbuf; 5596 27.7.1 Template class basic_stringbuf [lib.stringbuf] 5600 X class basic_stringbuf : public basic_streambuf<charT,traits> { 5608 S explicit basic_stringbuf(ios_base::openmode which 5610 S explicit basic_stringbuf [all …]
|
/openbsd-src/gnu/llvm/libcxx/docs/Status/ |
H A D | Cxx20Papers.csv | 102 "`P0408R7 <https://wg21.link/P0408R7>`__","LWG","Efficient Access to basic_stringbuf's Buffer","Col…
|
H A D | Cxx20Issues.csv | 104 "`2995 <https://wg21.link/LWG2995>`__","``basic_stringbuf``\ default constructor forbids it from u…
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/ |
H A D | ChangeLog | 2163 (basic_stringbuf::str(const __string_type&)): 2181 (basic_stringbuf::str(const __string_type&)): 2183 basic_string is not taken into account in basic_stringbuf. 3732 * include/bits/sstream.tcc (basic_stringbuf::overflow): Use 5665 (basic_stringbuf::_M_stringbuf_init): Also check for ios_base::app. 6121 * include/std/std_sstream.h (basic_stringbuf): Make data members
|
H A D | ChangeLog-2000 | 3280 * bits/std_sstream.h (basic_stringbuf::_M_init_stringbuf): Set 7703 basic_stringbuf<>::basic_stringbuf: fix. 7704 basic_stringbuf<>::setbuf: 7708 to basic_stringbuf<_CharT, _Traits, _Alloc>*. 8522 _M_sb, a basic_stringbuf object, and use the basic_ios pointer
|
H A D | ChangeLog-2001 | 2529 * include/bits/std_sstream.h (basic_stringbuf::basic_stringbuf(string):
|
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Inclusions/ |
H A D | StdSymbolMap.inc | 160 SYMBOL(basic_stringbuf, std::, <sstream>)
|