Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/
H A Dstreambuf20 class basic_streambuf
30 virtual ~basic_streambuf();
37 basic_streambuf* pubsetbuf(char_type* s, streamsize n);
61 basic_streambuf();
62 basic_streambuf(const basic_streambuf& rhs);
63 basic_streambuf& operator=(const basic_streambuf& rhs);
64 void swap(basic_streambuf& rhs);
85 virtual basic_streambuf* setbuf(char_type* s, streamsize n);
131 class _LIBCPP_TEMPLATE_VIS basic_streambuf {
143 virtual ~basic_streambuf();
[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);
589 _LIBCPP_HIDE_FROM_ABI explicit basic_ios(basic_streambuf<char_type, traits_type>* __sb);
596 _LIBCPP_HIDE_FROM_ABI basic_streambuf<char_type, traits_type>* rdbuf() const;
597 …_LIBCPP_HIDE_FROM_ABI basic_streambuf<char_type, traits_type>* rdbuf(basic_streambuf<char_type, tr…
614 _LIBCPP_HIDE_FROM_ABI void init(basic_streambuf<char_type, traits_type>* __sb);
619 _LIBCPP_HIDE_FROM_ABI void set_rdbuf(basic_streambuf<char_type, traits_type>* __sb);
[all …]
H A Diosfwd30 template <class charT, class traits = char_traits<charT> > class basic_streambuf;
55 typedef basic_streambuf<char> streambuf;
70 typedef basic_streambuf<wchar_t> wstreambuf;
H A Dsyncstream37 class basic_syncbuf : public basic_streambuf<charT, traits> {
46 using streambuf_type = basic_streambuf<charT, traits>;
89 using streambuf_type = basic_streambuf<charT, traits>;
243 class _LIBCPP_TEMPLATE_VIS basic_syncbuf : public basic_streambuf<_CharT, _Traits> {
252 using streambuf_type = basic_streambuf<_CharT, _Traits>;
442 using streambuf_type = basic_streambuf<char_type, traits_type>;
H A Distream29 explicit basic_istream(basic_streambuf<char_type, traits_type>* sb);
45 basic_istream& operator>>(basic_streambuf<char_type, traits_type>* sb);
66 basic_istream& get(basic_streambuf<char_type,traits_type>& sb);
67 basic_istream& get(basic_streambuf<char_type,traits_type>& sb, char_type delim);
133 explicit basic_iostream(basic_streambuf<char_type, traits_type>* sb);
202 …inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 explicit basic_istream(basic_streambuf<char_type, traits_typ…
242 basic_istream& operator>>(basic_streambuf<char_type, traits_type>* __sb);
274 …inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 basic_istream& get(basic_streambuf<char_type, traits_type>& …
278 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb, char_type __dlm);
607 basic_istream<_CharT, _Traits>::operator>>(basic_streambuf<char_type, traits_type>* __sb) {
[all …]
H A Dostream29 explicit basic_ostream(basic_streambuf<char_type,traits>* sb);
59 basic_ostream& operator<<(basic_streambuf<char_type,traits>* sb);
H A Dfstream18 : public basic_streambuf<charT, traits>
50 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* s, streamsize n);
226 class _LIBCPP_TEMPLATE_VIS basic_filebuf : public basic_streambuf<_CharT, _Traits> {
292 basic_streambuf<char_type, traits_type>* setbuf(char_type* __s, streamsize __n) override;
425 basic_filebuf<_CharT, _Traits>::basic_filebuf(basic_filebuf&& __rhs) : basic_streambuf<_CharT, _Tra…
503 basic_streambuf<char_type, traits_type>::swap(__rhs);
868 basic_streambuf<_CharT, _Traits>* basic_filebuf<_CharT, _Traits>::setbuf(char_type* __s, streamsize…
H A Dstrstream17 : public basic_streambuf<char>
H A Dsstream21 : public basic_streambuf<charT, traits>
87 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type*, streamsize);
337 class _LIBCPP_TEMPLATE_VIS basic_stringbuf : public basic_streambuf<_CharT, _Traits> {
H A Diterator591 typedef basic_streambuf<charT, traits> streambuf_type;
630 typedef basic_streambuf<charT, traits> streambuf_type;
H A Dlocale123 : public basic_streambuf<Elem, Tr>
3356 class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wbuffer_convert : public basic_streambuf<_El…
3410 …_LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* _…
3578 basic_streambuf<_Elem, _Tr>* wbuffer_convert<_Codecvt, _Elem, _Tr>::setbuf(char_type* __s, streamsi…
/freebsd/contrib/llvm-project/libcxx/include/__fwd/
H A Dstreambuf.h22 class _LIBCPP_TEMPLATE_VIS basic_streambuf; variable
24 using streambuf = basic_streambuf<char>;
27 using wstreambuf = basic_streambuf<wchar_t>;
31 …RED_NAME(streambuf) _LIBCPP_IF_WIDE_CHARACTERS(_LIBCPP_PREFERRED_NAME(wstreambuf)) basic_streambuf;
/freebsd/contrib/llvm-project/libcxx/src/
H A Dios.instantiations.cpp21 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_streambuf<char>; variable
28 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_streambuf<wchar_t>; variable
H A Dstd_stream.h33 class _LIBCPP_HIDDEN __stdinbuf : public basic_streambuf<_CharT, char_traits<_CharT> > {
241 class _LIBCPP_HIDDEN __stdoutbuf : public basic_streambuf<_CharT, char_traits<_CharT> > { in pbackfail()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dstreambuf.cppm
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dostreambuf_iterator.h17 #include <iosfwd> // for forward declaration of basic_streambuf
46 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
H A Distreambuf_iterator.h44 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
/freebsd/contrib/llvm-project/libcxx/include/__ostream/
H A Dbasic_ostream.h50 …inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 explicit basic_ostream(basic_streambuf<char_type, traits_typ… in basic_ostream()
108 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb);
184 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<char_type, traits_type>* __sb) {
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc788 SYMBOL(basic_streambuf, std::, <streambuf>)
789 SYMBOL(basic_streambuf, std::, <iostream>)
790 SYMBOL(basic_streambuf, std::, <iosfwd>)