Home
last modified time | relevance | path

Searched refs:basic_streambuf (Results 1 – 25 of 38) sorted by relevance

12

/freebsd-12.1/contrib/libc++/include/
H A Dstreambuf21 class basic_streambuf
62 basic_streambuf();
63 basic_streambuf(const basic_streambuf& rhs);
64 basic_streambuf& operator=(const basic_streambuf& rhs);
234 basic_streambuf(const basic_streambuf& __rhs);
235 basic_streambuf& operator=(const basic_streambuf& __rhs);
306 basic_streambuf<_CharT, _Traits>::~basic_streambuf()
311 basic_streambuf<_CharT, _Traits>::basic_streambuf()
322 basic_streambuf<_CharT, _Traits>::basic_streambuf(const basic_streambuf& __sb)
335 basic_streambuf<_CharT, _Traits>::operator=(const basic_streambuf& __sb)
[all …]
H A Dios136 explicit basic_ios(basic_streambuf<charT,traits>* sb);
143 basic_streambuf<charT,traits>* rdbuf() const;
144 basic_streambuf<charT,traits>* rdbuf(basic_streambuf<charT,traits>* sb);
161 void init(basic_streambuf<charT,traits>* sb);
164 void set_rdbuf(basic_streambuf<charT, traits>* sb);
635 basic_streambuf<char_type, traits_type>* rdbuf() const;
637 basic_streambuf<char_type, traits_type>* rdbuf(basic_streambuf<char_type, traits_type>* __sb);
659 void init(basic_streambuf<char_type, traits_type>* __sb);
718 basic_streambuf<_CharT, _Traits>*
726 basic_streambuf<_CharT, _Traits>*
[all …]
H A Diosfwd32 template <class charT, class traits = char_traits<charT> > class basic_streambuf;
57 typedef basic_streambuf<char> streambuf;
72 typedef basic_streambuf<wchar_t> wstreambuf;
121 class _LIBCPP_TEMPLATE_VIS basic_streambuf;
159 typedef basic_streambuf<char> streambuf;
174 typedef basic_streambuf<wchar_t> wstreambuf;
H A Distream30 explicit basic_istream(basic_streambuf<char_type, traits_type>* sb);
46 basic_istream& operator>>(basic_streambuf<char_type, traits_type>* sb);
67 basic_istream& get(basic_streambuf<char_type,traits_type>& sb);
68 basic_istream& get(basic_streambuf<char_type,traits_type>& sb, char_type delim);
134 explicit basic_iostream(basic_streambuf<char_type, traits_type>* sb);
191 explicit basic_istream(basic_streambuf<char_type, traits_type>* __sb) : __gc_(0)
233 basic_istream& operator>>(basic_streambuf<char_type, traits_type>* __sb);
268 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb)
271 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb, char_type __dlm);
809 basic_istream<_CharT, _Traits>::get(basic_streambuf<char_type, traits_type>& __sb,
[all …]
H A D__std_stream36 : public basic_streambuf<_CharT, char_traits<_CharT> >
224 : public basic_streambuf<_CharT, char_traits<_CharT> >
H A Dostream30 explicit basic_ostream(basic_streambuf<char_type,traits>* sb);
59 basic_ostream& operator<<(basic_streambuf<char_type,traits>* sb);
165 explicit basic_ostream(basic_streambuf<char_type, traits_type>* __sb)
220 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb);
317 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<char_type, traits_type>* __sb)
H A Dfstream19 : public basic_streambuf<charT, traits>
51 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* s, streamsize n);
203 : public basic_streambuf<_CharT, _Traits>
258 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* __s, streamsize __n);
318 : basic_streambuf<_CharT, _Traits>(__rhs)
416 basic_streambuf<char_type, traits_type>::swap(__rhs);
868 basic_streambuf<_CharT, _Traits>*
/freebsd-12.1/contrib/libstdc++/include/bits/
H A Dstreambuf.tcc49 basic_streambuf<_CharT, _Traits>:: in _GLIBCXX_BEGIN_NAMESPACE()
83 basic_streambuf<_CharT, _Traits>::
121 basic_streambuf<_CharT, _Traits>* __sbout, in __copy_streambufs_eof()
154 extern template class basic_streambuf<char>;
157 __copy_streambufs(basic_streambuf<char>*,
158 basic_streambuf<char>*);
161 __copy_streambufs_eof(basic_streambuf<char>*,
162 basic_streambuf<char>*, bool&);
168 __copy_streambufs(basic_streambuf<wchar_t>*,
169 basic_streambuf<wchar_t>*);
[all …]
H A Dbasic_ios.h90 basic_streambuf<_CharT, _Traits>* _M_streambuf; in _GLIBCXX_BEGIN_NAMESPACE()
256 basic_ios(basic_streambuf<_CharT, _Traits>* __sb) in _GLIBCXX_BEGIN_NAMESPACE()
306 basic_streambuf<_CharT, _Traits>* in _GLIBCXX_BEGIN_NAMESPACE()
332 basic_streambuf<_CharT, _Traits>* in _GLIBCXX_BEGIN_NAMESPACE()
333 rdbuf(basic_streambuf<_CharT, _Traits>* __sb); in _GLIBCXX_BEGIN_NAMESPACE()
456 init(basic_streambuf<_CharT, _Traits>* __sb); in _GLIBCXX_BEGIN_NAMESPACE()
H A Dbasic_ios.tcc56 basic_streambuf<_CharT, _Traits>*
57 basic_ios<_CharT, _Traits>::rdbuf(basic_streambuf<_CharT, _Traits>* __sb) in rdbuf()
59 basic_streambuf<_CharT, _Traits>* __old = _M_streambuf; in rdbuf()
140 basic_ios<_CharT, _Traits>::init(basic_streambuf<_CharT, _Traits>* __sb) in init()
H A Dstreambuf_iterator.h60 typedef basic_streambuf<_CharT, _Traits> streambuf_type; in _GLIBCXX_BEGIN_NAMESPACE()
216 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
/freebsd-12.1/contrib/libstdc++/src/
H A Dstreambuf-inst.cc41 template class basic_streambuf<char>;
45 __copy_streambufs(basic_streambuf<char>*, basic_streambuf<char>*);
49 __copy_streambufs_eof(basic_streambuf<char>*,
50 basic_streambuf<char>*, bool&);
54 template class basic_streambuf<wchar_t>; variable
58 __copy_streambufs(basic_streambuf<wchar_t>*, basic_streambuf<wchar_t>*);
62 __copy_streambufs_eof(basic_streambuf<wchar_t>*,
63 basic_streambuf<wchar_t>*, bool&);
H A Dstreambuf.cc40 __copy_streambufs_eof(basic_streambuf<char>* __sbin, in _GLIBCXX_BEGIN_NAMESPACE()
41 basic_streambuf<char>* __sbout, bool& __ineof) in _GLIBCXX_BEGIN_NAMESPACE()
43 typedef basic_streambuf<char>::traits_type traits_type; in _GLIBCXX_BEGIN_NAMESPACE()
80 __copy_streambufs_eof(basic_streambuf<wchar_t>* __sbin, in __copy_streambufs_eof()
81 basic_streambuf<wchar_t>* __sbout, bool& __ineof) in __copy_streambufs_eof()
83 typedef basic_streambuf<wchar_t>::traits_type traits_type; in __copy_streambufs_eof()
H A Dstrstream.cc224 basic_streambuf<char, char_traits<char> >*
/freebsd-12.1/contrib/libstdc++/include/std/
H A Dstd_streambuf.h60 __copy_streambufs_eof(basic_streambuf<_CharT, _Traits>*,
61 basic_streambuf<_CharT, _Traits>*, bool&);
124 class basic_streambuf
212 ~basic_streambuf() in ~basic_streambuf()
459 basic_streambuf() in basic_streambuf() function
586 virtual basic_streambuf<char_type,_Traits>*
794 basic_streambuf(const __streambuf_type& __sb) in basic_streambuf() function
808 __copy_streambufs_eof(basic_streambuf<char>* __sbin,
809 basic_streambuf<char>* __sbout, bool& __ineof);
813 __copy_streambufs_eof(basic_streambuf<wchar_t>* __sbin,
[all …]
H A Dstd_iosfwd.h58 class basic_streambuf; variable
136 typedef basic_streambuf<char> streambuf; ///< @isiosfwd
151 typedef basic_streambuf<wchar_t> wstreambuf; ///< @isiosfwd
H A Dstd_istream.h69 typedef basic_streambuf<_CharT, _Traits> __streambuf_type; in _GLIBCXX_BEGIN_NAMESPACE()
651 typedef basic_streambuf<_CharT, _Traits> __streambuf_type;
801 basic_iostream(basic_streambuf<_CharT, _Traits>* __sb) in basic_iostream()
H A Dstd_fstream.h69 class basic_filebuf : public basic_streambuf<_CharT, _Traits> in _GLIBCXX_BEGIN_NAMESPACE()
79 typedef basic_streambuf<char_type, traits_type> __streambuf_type; in _GLIBCXX_BEGIN_NAMESPACE()
H A Dstd_sstream.h62 class basic_stringbuf : public basic_streambuf<_CharT, _Traits> in _GLIBCXX_BEGIN_NAMESPACE()
75 typedef basic_streambuf<char_type, traits_type> __streambuf_type; in _GLIBCXX_BEGIN_NAMESPACE()
H A Dstd_ostream.h70 typedef basic_streambuf<_CharT, _Traits> __streambuf_type; in _GLIBCXX_BEGIN_NAMESPACE()
/freebsd-12.1/contrib/libstdc++/include/backward/
H A Dstrstream62 class strstreambuf : public basic_streambuf<char, char_traits<char> >
67 typedef basic_streambuf<char, _Traits> _Base;
/freebsd-12.1/contrib/libc++/src/
H A Dios.cpp32 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_streambuf<char>; variable
33 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_streambuf<wchar_t>; variable
/freebsd-12.1/contrib/libstdc++/
H A DChangeLog-20034657 (~basic_streambuf): Tweak.
5534 (basic_streambuf(), ~basic_streambuf()): Adjust.
5564 (basic_streambuf(), ~basic_streambuf()): Adjust.
5803 (basic_streambuf::basic_streambuf()): Adjust.
5807 from basic_streambuf.
6487 * 27_io/basic_streambuf/1.cc: New.
6488 * 27_io/basic_streambuf/2.cc: New.
6489 * 27_io/basic_streambuf/3.cc: New.
7968 (basic_streambuf::basic_streambuf,
7969 basic_streambuf::~basic_streambuf,
[all …]
H A DChangeLog-199886 names for basic_streambuf data members.
89 basic_streambuf(): Initialize with global locale data.
107 for basic_string and basic_streambuf. Scope _IO_buf_* pointers to
114 * bits/std_streambuf.h: Radical reconstruction of basic_streambuf.
522 get (basic_streambuf<char_type,_Traits>& __sb, char_type __delim)
673 definition of basic_streambuf.h, which is used in basic_ios.h to
677 (class basic_streambuf): Define missing methods pubimbue and
/freebsd-12.1/contrib/libstdc++/include/ext/
H A Dstdio_sync_filebuf.h51 class stdio_sync_filebuf : public std::basic_streambuf<_CharT, _Traits> in _GLIBCXX_BEGIN_NAMESPACE()

12