Searched refs:streambuf_type (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ostreambuf_iterator.h | 47 typedef basic_streambuf<_CharT, _Traits> streambuf_type; typedef 57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {} in ostreambuf_iterator() 74 streambuf_type* _M_buf;
|
D | _istreambuf_iterator.h | 52 typedef basic_streambuf<_CharT, _Traits> streambuf_type; typedef 62 istreambuf_iterator(streambuf_type* __p = 0) { this->_M_init(__p); } 83 void _M_init(streambuf_type* __p) { in _M_init() 99 streambuf_type* _M_buf;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ |
D | types.pass.cpp | 34 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), ""); in main() 42 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/ |
D | types.pass.cpp | 39 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), ""); in main() 49 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | iterator | 265 typedef basic_streambuf<charT,traits> streambuf_type; 270 istreambuf_iterator(streambuf_type* s) noexcept; 295 typedef basic_streambuf<charT,traits> streambuf_type; 299 ostreambuf_iterator(streambuf_type* s) noexcept; 827 typedef basic_streambuf<_CharT,_Traits> streambuf_type; 830 mutable streambuf_type* __sbuf_; 835 streambuf_type* __sbuf_; 836 _LIBCPP_INLINE_VISIBILITY __proxy(char_type __c, streambuf_type* __s) 854 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(streambuf_type* __s) _NOEXCEPT 895 typedef basic_streambuf<_CharT,_Traits> streambuf_type; [all …]
|