/external/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;
|
/external/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()
|
/external/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;
|
/external/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()
|
/external/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()
|
/external/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 | seekoff.pass.cpp | 24 : public std::basic_filebuf<CharT> 26 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;
|
/external/stlport/stlport/using/ |
D | fstream | 4 using _STLP_NEW_IO_NAMESPACE::basic_filebuf;
|
D | iosfwd | 12 using _STLP_NEW_IO_NAMESPACE::basic_filebuf;
|
/external/llvm/test/Transforms/Inline/ |
D | 2006-11-09-InlineCGUpdate-2.ll | 12 …%"struct.std::basic_filebuf<char,std::char_traits<char> >" = type { %"struct.std::basic_streambuf<… 15 …> >" = type { %"struct.__gnu_cxx::char_producer<char>", %"struct.std::basic_filebuf<char,std::char… 43 …%tmp.6 = icmp eq %"struct.std::basic_filebuf<char,std::char_traits<char> >"* null, null ; <i1> [#…
|
D | 2006-11-09-InlineCGUpdate.ll | 20 …%"struct.std::basic_filebuf<char,std::char_traits<char> >" = type { %"struct.std::basic_streambuf<… 21 …%"struct.std::basic_filebuf<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_stre… 22 …le::facet", %"struct.__gnu_cxx::char_producer<char>" }, %"struct.std::basic_filebuf<char,std::char… 23 …le::facet", %"struct.__gnu_cxx::char_producer<char>" }, %"struct.std::basic_filebuf<wchar_t,std::c…
|
/external/stlport/stlport/ |
D | fstream | 20 // This header defines classes basic_filebuf, basic_ifstream,
|
/external/oprofile/libregex/tests/ |
D | mangled-name.in | 273 std::basic_filebuf<int, std::char_traits<int> > 274 basic_filebuf<int> 331 std::basic_filebuf<char, std::char_traits<char> > 333 std::basic_filebuf<wchar_t, std::char_traits<wchar_t> >
|
/external/stlport/etc/ |
D | ChangeLog-5.1 | 701 * stlport/stl/_fstream.c: First attempt to fix seekoff basic_filebuf 3796 * src/fstream.cpp: Final fix of basic_filebuf::open method. Now when open 3802 * src/fstream.cpp: Fix annoying 64 warning and basic_filebuf::open method 4011 a bad_cast exception on basic_filebuf construction. At this point the locale 4013 codecvt facet. The user is then force to call imbue after basic_filebuf 7713 …* _fstream.c : added basic_filebuf constructor workaround for compiler which do not initialize bui… 8188 …* _fstream.h : added basic_filebuf<>::fd() file descriptor accessor, as extension (thanks to Georg…
|
D | ChangeLog | 1113 basic_filebuf<_CharT, _Traits>::_M_underflow_aux() to take 1256 codecvt facet and integration of it in the basic_filebuf
|