/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf/ |
D | types.pass.cpp | 28 …static_assert((std::is_base_of<std::basic_streambuf<char>, std::basic_filebuf<char> >::value), ""); in main() 29 static_assert((std::is_same<std::basic_filebuf<char>::char_type, char>::value), ""); in main() 30 …static_assert((std::is_same<std::basic_filebuf<char>::traits_type, std::char_traits<char> >::value… in main() 31 …static_assert((std::is_same<std::basic_filebuf<char>::int_type, std::char_traits<char>::int_type>:… in main() 32 …static_assert((std::is_same<std::basic_filebuf<char>::pos_type, std::char_traits<char>::pos_type>:… in main() 33 …static_assert((std::is_same<std::basic_filebuf<char>::off_type, std::char_traits<char>::off_type>:… in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _fstream.c | 37 # define __BF_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_filebuf<_CharT, _Traits>::int_type 38 # define __BF_pos_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_filebuf<_CharT, _Traits>::pos_type 39 # define __BF_off_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_filebuf<_CharT, _Traits>::off_type 47 basic_filebuf<_CharT, _Traits>::basic_filebuf() in basic_filebuf() function 67 basic_filebuf<_CharT, _Traits>::~basic_filebuf() { in ~basic_filebuf() 74 _STLP_TYPENAME_ON_RETURN_TYPE basic_filebuf<_CharT, _Traits>::int_type 75 basic_filebuf<_CharT, _Traits>::underflow() { in underflow() 80 basic_filebuf<_CharT, _Traits>* 81 basic_filebuf<_CharT, _Traits>::close() { in close() 118 void basic_filebuf<_CharT, _Traits>::_M_exit_input_mode() { in _M_exit_input_mode() [all …]
|
D | _fstream.h | 149 class basic_filebuf : public basic_streambuf<_CharT, _Traits> { 159 typedef basic_filebuf<_CharT, _Traits> _Self; 162 basic_filebuf(); 163 ~basic_filebuf(); 334 _STLP_EXPORT_TEMPLATE_CLASS basic_filebuf<char, char_traits<char> >; variable 336 _STLP_EXPORT_TEMPLATE_CLASS basic_filebuf<wchar_t, char_traits<wchar_t> >; variable 348 static bool _STLP_CALL _M_doit(basic_filebuf<char_type, _Traits >*, in _M_doit() 357 _M_doit(basic_filebuf<char, char_traits<char> >* __buf, in _M_doit() 382 _M_doit(basic_filebuf<char_type, _Traits>*) in _M_doit() 390 _M_doit(basic_filebuf<char, char_traits<char> >* __buf) { in _M_doit() [all …]
|
D | _iosfwd.h | 61 class basic_filebuf; variable 130 typedef basic_filebuf<char, char_traits<char> > filebuf; 147 typedef basic_filebuf<wchar_t, char_traits<wchar_t> > wfilebuf;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | fstream | 18 class basic_filebuf 29 basic_filebuf(); 30 basic_filebuf(basic_filebuf&& rhs); 31 virtual ~basic_filebuf(); 34 basic_filebuf& operator=(basic_filebuf&& rhs); 35 void swap(basic_filebuf& rhs); 39 basic_filebuf* open(const char* s, ios_base::openmode mode); 40 basic_filebuf* open(const string& s, ios_base::openmode mode); 41 basic_filebuf* close(); 61 swap(basic_filebuf<charT, traits>& x, basic_filebuf<charT, traits>& y); [all …]
|
D | iosfwd | 40 template <class charT, class traits = char_traits<charT> > class basic_filebuf; 61 typedef basic_filebuf<char> filebuf; 76 typedef basic_filebuf<wchar_t> wfilebuf; 129 class _LIBCPP_TYPE_VIS_ONLY basic_filebuf; 155 typedef basic_filebuf<char> filebuf; 170 typedef basic_filebuf<wchar_t> wfilebuf;
|
/ndk/sources/cxx-stl/stlport/src/ |
D | fstream.cpp | 37 _Underflow< char, char_traits<char> >::_M_doit(basic_filebuf<char, char_traits<char> >* __this) in _M_doit() 99 template class basic_filebuf<char, char_traits<char> >; variable 106 template class basic_filebuf<wchar_t, char_traits<wchar_t> >; variable
|
D | iostream.cpp | 169 auto_ptr<filebuf> result(new basic_filebuf<char, char_traits<char> >()); in _Stl_create_filebuf() 181 auto_ptr<wfilebuf> result(new basic_filebuf<wchar_t, char_traits<wchar_t> >()); in _Stl_create_wfilebuf()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/ |
D | pbackfail.pass.cpp | 21 : public std::basic_filebuf<CharT> 23 typedef std::basic_filebuf<CharT> base;
|
D | underflow.pass.cpp | 23 : public std::basic_filebuf<CharT> 25 typedef std::basic_filebuf<CharT> base;
|
D | overflow.pass.cpp | 23 : public std::basic_filebuf<CharT> 25 typedef std::basic_filebuf<CharT> base;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/ |
D | iosfwd.pass.cpp | 68 std::basic_filebuf<char>* t1 = 0; in main() 69 std::basic_filebuf<wchar_t>* t2 = 0; in main() 70 std::basic_filebuf<unsigned short>* t3 = 0; in main()
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | fstream | 4 using _STLP_NEW_IO_NAMESPACE::basic_filebuf;
|
D | iosfwd | 12 using _STLP_NEW_IO_NAMESPACE::basic_filebuf;
|
/ndk/sources/cxx-stl/stlport/stlport/ |
D | fstream | 20 // This header defines classes basic_filebuf, basic_ifstream,
|