Home
last modified time | relevance | path

Searched refs:basic_filebuf (Results 1 – 15 of 15) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf/
Dtypes.pass.cpp28 …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.c37 # 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.h149 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.h61 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/
Dfstream18 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 …]
Diosfwd40 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/
Dfstream.cpp37 _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
Diostream.cpp169 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/
Dpbackfail.pass.cpp21 : public std::basic_filebuf<CharT>
23 typedef std::basic_filebuf<CharT> base;
Dunderflow.pass.cpp23 : public std::basic_filebuf<CharT>
25 typedef std::basic_filebuf<CharT> base;
Doverflow.pass.cpp23 : public std::basic_filebuf<CharT>
25 typedef std::basic_filebuf<CharT> base;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/
Diosfwd.pass.cpp68 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/
Dfstream4 using _STLP_NEW_IO_NAMESPACE::basic_filebuf;
Diosfwd12 using _STLP_NEW_IO_NAMESPACE::basic_filebuf;
/ndk/sources/cxx-stl/stlport/stlport/
Dfstream20 // This header defines classes basic_filebuf, basic_ifstream,