Home
last modified time | relevance | path

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

1234567

/ndk/sources/cxx-stl/llvm-libc++/libcxx/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 …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_streambuf.c31 basic_streambuf<_CharT, _Traits>::basic_streambuf() in basic_streambuf() function
40 basic_streambuf<_CharT, _Traits>::~basic_streambuf() in ~basic_streambuf()
45 basic_streambuf<_CharT, _Traits>::pubimbue(const locale& __loc) { in pubimbue()
54 basic_streambuf<_CharT, _Traits>::xsgetn(_CharT* __s, streamsize __n) { in xsgetn()
84 basic_streambuf<_CharT, _Traits>::xsputn(const _CharT* __s, streamsize __n) in xsputn()
112 basic_streambuf<_CharT, _Traits>::_M_xsputnc(_CharT __c, streamsize __n) in _M_xsputnc()
136 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::int_type
137 basic_streambuf<_CharT, _Traits>::_M_snextc_aux() in _M_snextc_aux()
149 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::int_type
150 basic_streambuf<_CharT, _Traits>::pbackfail(int_type) { in pbackfail()
[all …]
D_ios.h58 explicit basic_ios(basic_streambuf<_CharT, _Traits>* __streambuf);
72 basic_streambuf<_CharT, _Traits>* rdbuf() const in rdbuf()
75 basic_streambuf<_CharT, _Traits>*
76 rdbuf(basic_streambuf<char_type, traits_type>*);
126 void init(basic_streambuf<_CharT, _Traits>* __streambuf);
137 basic_streambuf<_CharT, _Traits>* _M_streambuf;
D_ios.c40 ::basic_ios(basic_streambuf<_CharT, _Traits>* __streambuf) in basic_ios()
47 basic_streambuf<_CharT, _Traits>*
48 basic_ios<_CharT, _Traits>::rdbuf(basic_streambuf<_CharT, _Traits>* __buf) { in rdbuf()
49 basic_streambuf<_CharT, _Traits>* __tmp = _M_streambuf; in rdbuf()
97 basic_ios<_CharT, _Traits>::init(basic_streambuf<_CharT, _Traits>* __sb) in init()
D_streambuf.h48 class basic_streambuf {
72 virtual ~basic_streambuf();
75 basic_streambuf() in basic_streambuf() function
124 virtual basic_streambuf<_CharT, _Traits>* setbuf(char_type*, streamsize);
142 basic_streambuf<_CharT, _Traits>* pubsetbuf(char_type* __s, streamsize __n) in pubsetbuf()
271 _STLP_EXPORT_TEMPLATE_CLASS basic_streambuf<char, char_traits<char> >; variable
273 _STLP_EXPORT_TEMPLATE_CLASS basic_streambuf<wchar_t, char_traits<wchar_t> >; variable
D_istream.c168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) { in __pushback()
428 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf(); in putback()
454 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf(); in unget()
479 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf(); in sync()
497 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf(); in tellg()
507 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf(); in seekg()
521 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf(); in seekg()
579 __read_unbuffered(basic_istream<_CharT, _Traits>* __that, basic_streambuf<_CharT, _Traits>* __buf, in __read_unbuffered()
635 __read_buffered(basic_istream<_CharT, _Traits>* __that, basic_streambuf<_CharT, _Traits>* __buf, in __read_buffered()
728 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf(); in get()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
Dxsgetn.pass.cpp21 : public std::basic_streambuf<char>
23 typedef std::basic_streambuf<char> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
Dxsputn.pass.cpp21 : public std::basic_streambuf<char>
23 typedef std::basic_streambuf<char> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/
Din_avail.pass.cpp24 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
Dsgetc.pass.cpp23 : public std::basic_streambuf<char>
25 typedef std::basic_streambuf<char> base;
Dsnextc.pass.cpp23 : public std::basic_streambuf<char>
25 typedef std::basic_streambuf<char> base;
Dsbumpc.pass.cpp23 : public std::basic_streambuf<char>
25 typedef std::basic_streambuf<char> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/
Dcopy.pass.cpp24 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
30 : std::basic_streambuf<CharT>(t) in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
Dsetp.pass.cpp22 : public std::basic_streambuf<CharT>
24 typedef std::basic_streambuf<CharT> base;
Dpbump.pass.cpp22 : public std::basic_streambuf<CharT>
24 typedef std::basic_streambuf<CharT> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/
Dsungetc.pass.cpp23 : public std::basic_streambuf<char>
25 typedef std::basic_streambuf<char> base;
Dsputbackc.pass.cpp23 : public std::basic_streambuf<char>
25 typedef std::basic_streambuf<char> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/
Dsetg.pass.cpp22 : public std::basic_streambuf<CharT>
24 typedef std::basic_streambuf<CharT> base;
Dgbump.pass.cpp22 : public std::basic_streambuf<CharT>
24 typedef std::basic_streambuf<CharT> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/
Dtellp.pass.cpp24 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
Dseekp.pass.cpp24 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
Dseekp2.pass.cpp24 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
Dsputc.pass.cpp23 : public std::basic_streambuf<char>
25 typedef std::basic_streambuf<char> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.rvalue/
Drvalue.pass.cpp23 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
Dsync.pass.cpp21 : public std::basic_streambuf<CharT>
24 typedef std::basic_streambuf<CharT> base;

1234567