Home
last modified time | relevance | path

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

12

/NextBSD/contrib/libc++/include/
Dstreambuf21 class basic_streambuf
31 virtual ~basic_streambuf();
38 basic_streambuf* pubsetbuf(char_type* s, streamsize n);
62 basic_streambuf();
63 basic_streambuf(const basic_streambuf& rhs);
64 basic_streambuf& operator=(const basic_streambuf& rhs);
65 void swap(basic_streambuf& rhs);
86 virtual basic_streambuf* setbuf(char_type* s, streamsize n);
122 class _LIBCPP_TYPE_VIS_ONLY basic_streambuf
132 virtual ~basic_streambuf();
[all …]
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);
600 explicit basic_ios(basic_streambuf<char_type,traits_type>* __sb);
610 basic_streambuf<char_type, traits_type>* rdbuf() const;
612 basic_streambuf<char_type, traits_type>* rdbuf(basic_streambuf<char_type, traits_type>* __sb);
634 void init(basic_streambuf<char_type, traits_type>* __sb);
645 void set_rdbuf(basic_streambuf<char_type, traits_type>* __sb);
[all …]
Diosfwd26 template <class charT, class traits = char_traits<charT> > class basic_streambuf;
51 typedef basic_streambuf<char> streambuf;
66 typedef basic_streambuf<wchar_t> wstreambuf;
107 class _LIBCPP_TYPE_VIS_ONLY basic_streambuf;
145 typedef basic_streambuf<char> streambuf;
160 typedef basic_streambuf<wchar_t> wstreambuf;
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);
187 explicit basic_istream(basic_streambuf<char_type, traits_type>* __sb);
220 basic_istream& operator>>(basic_streambuf<char_type, traits_type>* __sb);
242 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb);
243 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb, char_type __dlm);
308 basic_istream<_CharT, _Traits>::basic_istream(basic_streambuf<char_type, traits_type>* __sb)
[all …]
Dostream30 explicit basic_ostream(basic_streambuf<char_type,traits>* sb);
59 basic_ostream& operator<<(basic_streambuf<char_type,traits>* sb);
163 explicit basic_ostream(basic_streambuf<char_type, traits_type>* __sb);
208 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb);
279 basic_ostream<_CharT, _Traits>::basic_ostream(basic_streambuf<char_type, traits_type>* __sb)
346 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<char_type, traits_type>* __sb)
D__std_stream34 : public basic_streambuf<_CharT, char_traits<_CharT> >
222 : public basic_streambuf<_CharT, char_traits<_CharT> >
Dfstream19 : public basic_streambuf<charT, traits>
50 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* s, streamsize n);
184 : public basic_streambuf<_CharT, _Traits>
220 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* __s, streamsize __n);
280 : basic_streambuf<_CharT, _Traits>(__rhs)
378 basic_streambuf<char_type, traits_type>::swap(__rhs);
734 basic_streambuf<_CharT, _Traits>*
/NextBSD/contrib/libstdc++/include/bits/
Dstreambuf.tcc49 basic_streambuf<_CharT, _Traits>:: in _GLIBCXX_BEGIN_NAMESPACE()
83 basic_streambuf<_CharT, _Traits>::
120 __copy_streambufs_eof(basic_streambuf<_CharT, _Traits>* __sbin, in __copy_streambufs_eof()
121 basic_streambuf<_CharT, _Traits>* __sbout, in __copy_streambufs_eof()
143 __copy_streambufs(basic_streambuf<_CharT, _Traits>* __sbin, in __copy_streambufs()
144 basic_streambuf<_CharT, _Traits>* __sbout) in __copy_streambufs()
154 extern template class basic_streambuf<char>;
157 __copy_streambufs(basic_streambuf<char>*,
158 basic_streambuf<char>*);
161 __copy_streambufs_eof(basic_streambuf<char>*,
[all …]
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()
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()
Dstreambuf_iterator.h60 typedef basic_streambuf<_CharT, _Traits> streambuf_type; in _GLIBCXX_BEGIN_NAMESPACE()
216 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
/NextBSD/contrib/libstdc++/src/
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&);
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()
Dstrstream.cc224 basic_streambuf<char, char_traits<char> >*
/NextBSD/contrib/libstdc++/include/std/
Dstd_streambuf.h60 __copy_streambufs_eof(basic_streambuf<_CharT, _Traits>*,
61 basic_streambuf<_CharT, _Traits>*, bool&);
124 class basic_streambuf
146 typedef basic_streambuf<char_type, traits_type> __streambuf_type;
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);
[all …]
Dstd_iosfwd.h58 class basic_streambuf; variable
136 typedef basic_streambuf<char> streambuf; ///< @isiosfwd
151 typedef basic_streambuf<wchar_t> wstreambuf; ///< @isiosfwd
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()
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()
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()
Dstd_ostream.h70 typedef basic_streambuf<_CharT, _Traits> __streambuf_type; in _GLIBCXX_BEGIN_NAMESPACE()
/NextBSD/contrib/libstdc++/include/backward/
Dstrstream62 class strstreambuf : public basic_streambuf<char, char_traits<char> >
67 typedef basic_streambuf<char, _Traits> _Base;
/NextBSD/contrib/libc++/src/
Dios.cpp31 template class basic_streambuf<char>; variable
32 template class basic_streambuf<wchar_t>; variable
/NextBSD/contrib/libstdc++/
DChangeLog-20031131 * testsuite/27_io/basic_streambuf/imbue/char/13007-1.cc: New.
1132 * testsuite/27_io/basic_streambuf/imbue/char/13007-2.cc: New.
1133 * testsuite/27_io/basic_streambuf/imbue/wchar_t/13007-1.cc: New.
1134 * testsuite/27_io/basic_streambuf/imbue/wchar_t/13007-2.cc: New.
3960 (~basic_streambuf()): Don't set _M_mode.
3961 (basic_streambuf()): Don't set _M_mode.
3966 * testsuite/27_io/basic_streambuf/cons/char/1.cc: Don't set _M_mode.
3967 * testsuite/27_io/basic_streambuf/overflow/char/1.cc: Likewise.
3968 * testsuite/27_io/basic_streambuf/sgetc/char/1.cc: Likewise.
3969 * testsuite/27_io/basic_streambuf/sgetn/char/1.cc: Likewise.
[all …]
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
/NextBSD/contrib/libstdc++/include/ext/
Dstdio_sync_filebuf.h51 class stdio_sync_filebuf : public std::basic_streambuf<_CharT, _Traits> in _GLIBCXX_BEGIN_NAMESPACE()

12