/external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/ |
D | seekoff.pass.cpp | 26 typedef std::filebuf::pos_type pos_type; in main() typedef 34 pos_type p = f.pubseekoff(-15, std::ios_base::cur); in main() 47 typedef std::filebuf::pos_type pos_type; in main() typedef 55 pos_type p = f.pubseekoff(-15, std::ios_base::cur); in main()
|
/external/libcxx/include/ |
D | streambuf | 28 typedef typename traits_type::pos_type pos_type; 39 pos_type pubseekoff(off_type off, ios_base::seekdir way, 41 pos_type pubseekpos(pos_type sp, 87 virtual pos_type seekoff(off_type off, ios_base::seekdir way, 89 virtual pos_type seekpos(pos_type sp, 129 typedef typename traits_type::pos_type pos_type; 140 pos_type pubseekoff(off_type __off, ios_base::seekdir __way, 142 pos_type pubseekpos(pos_type __sp, 188 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, 190 virtual pos_type seekpos(pos_type __sp, [all …]
|
D | sstream | 25 typedef typename traits_type::pos_type pos_type; 49 virtual pos_type seekoff(off_type off, ios_base::seekdir way, 51 virtual pos_type seekpos(pos_type sp, 70 typedef typename traits_type::pos_type pos_type; 106 typedef typename traits_type::pos_type pos_type; 142 typedef typename traits_type::pos_type pos_type; 196 typedef typename traits_type::pos_type pos_type; 232 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, 234 virtual pos_type seekpos(pos_type __sp, 559 typename basic_stringbuf<_CharT, _Traits, _Allocator>::pos_type [all …]
|
D | fstream | 25 typedef typename traits_type::pos_type pos_type; 51 virtual pos_type seekoff(off_type off, ios_base::seekdir way, 53 virtual pos_type seekpos(pos_type sp, 74 typedef typename traits_type::pos_type pos_type; 107 typedef typename traits_type::pos_type pos_type; 140 typedef typename traits_type::pos_type pos_type; 190 typedef typename traits_type::pos_type pos_type; 219 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, 221 virtual pos_type seekpos(pos_type __sp, 783 typename basic_filebuf<_CharT, _Traits>::pos_type [all …]
|
D | strstream | 46 virtual pos_type seekoff(off_type off, ios_base::seekdir way, 48 virtual pos_type seekpos(pos_type sp, 107 typedef char_traits<char>::pos_type pos_type; 173 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, 175 virtual pos_type seekpos(pos_type __sp, 344 typedef char_traits<char>::pos_type pos_type;
|
D | ostream | 26 typedef typename traits_type::pos_type pos_type; 67 pos_type tellp(); 68 basic_ostream& seekp(pos_type); 159 typedef typename traits_type::pos_type pos_type; 216 pos_type tellp(); 217 basic_ostream& seekp(pos_type __pos); 993 typename basic_ostream<_CharT, _Traits>::pos_type 997 return pos_type(-1); 1004 basic_ostream<_CharT, _Traits>::seekp(pos_type __pos) 1009 if (this->rdbuf()->pubseekpos(__pos, ios_base::out) == pos_type(-1)) [all …]
|
D | istream | 26 typedef typename traits_type::pos_type pos_type; 82 pos_type tellg(); 83 basic_istream& seekg(pos_type); 130 typedef typename traits_type::pos_type pos_type; 183 typedef typename traits_type::pos_type pos_type; 257 pos_type tellg(); 258 basic_istream& seekg(pos_type __pos); 1356 typename basic_istream<_CharT, _Traits>::pos_type 1359 pos_type __r(-1); 1379 basic_istream<_CharT, _Traits>::seekg(pos_type __pos) [all …]
|
/external/libcxx/test/std/input.output/stream.buffers/streambuf/ |
D | types.pass.cpp | 31 …static_assert((std::is_same<std::streambuf::pos_type, std::char_traits<char>::pos_type>::value), "… in main() 37 …static_assert((std::is_same<std::wstreambuf::pos_type, std::char_traits<wchar_t>::pos_type>::value… in main()
|
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ |
D | seekoff.pass.cpp | 40 typedef test_buf::pos_type pos_type; in main() typedef 47 pos_type p = f.pubseekoff(-15, std::ios_base::cur); in main()
|
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstream/ |
D | types.pass.cpp | 30 …static_assert((std::is_same<std::strstream::pos_type, std::char_traits<char>::pos_type>::value), "… in main()
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream/ |
D | types.pass.cpp | 33 …static_assert((std::is_same<std::basic_ostream<char>::pos_type, std::char_traits<char>::pos_type>:… in main()
|
/external/libcxx/test/std/input.output/iostreams.base/ios/ |
D | types.pass.cpp | 31 …static_assert((std::is_same<std::basic_ios<char>::pos_type, std::char_traits<char>::pos_type>::val… in main()
|
/external/libcxx/test/std/input.output/file.streams/fstreams/fstream/ |
D | types.pass.cpp | 32 …static_assert((std::is_same<std::basic_fstream<char>::pos_type, std::char_traits<char>::pos_type>:… in main()
|
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream/ |
D | types.pass.cpp | 33 …static_assert((std::is_same<std::basic_istream<char>::pos_type, std::char_traits<char>::pos_type>:… in main()
|
/external/libcxx/test/std/input.output/file.streams/fstreams/filebuf/ |
D | types.pass.cpp | 32 …static_assert((std::is_same<std::basic_filebuf<char>::pos_type, std::char_traits<char>::pos_type>:… in main()
|
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream/ |
D | types.pass.cpp | 32 …static_assert((std::is_same<std::basic_ifstream<char>::pos_type, std::char_traits<char>::pos_type>… in main()
|
/external/libcxx/test/std/input.output/file.streams/fstreams/ofstream/ |
D | types.pass.cpp | 32 …static_assert((std::is_same<std::basic_ofstream<char>::pos_type, std::char_traits<char>::pos_type>… in main()
|
/external/libcxx/src/ |
D | strstream.cpp | 228 strstreambuf::pos_type 283 return pos_type(__p); in seekoff() 286 strstreambuf::pos_type 287 strstreambuf::seekpos(pos_type __sp, ios_base::openmode __which) in seekpos() 314 return pos_type(__p); in seekpos()
|
/external/libcxx/test/std/input.output/iostream.format/input.streams/iostreamclass/ |
D | types.pass.cpp | 35 …static_assert((std::is_same<std::basic_iostream<char>::pos_type, std::char_traits<char>::pos_type>… in main()
|
/external/libcxx/test/std/input.output/string.streams/ostringstream/ |
D | types.pass.cpp | 33 …c_assert((std::is_same<std::basic_ostringstream<char>::pos_type, std::char_traits<char>::pos_type>… in main()
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.seeks/ |
D | seekp.pass.cpp | 31 typename base::pos_type 32 seekpos(typename base::pos_type sp, std::ios_base::openmode which) in seekpos()
|
/external/libcxx/test/std/input.output/string.streams/stringstream/ |
D | types.pass.cpp | 33 …ic_assert((std::is_same<std::basic_stringstream<char>::pos_type, std::char_traits<char>::pos_type>… in main()
|
/external/libcxx/test/std/input.output/string.streams/istringstream/ |
D | types.pass.cpp | 33 …c_assert((std::is_same<std::basic_istringstream<char>::pos_type, std::char_traits<char>::pos_type>… in main()
|
/external/libcxx/test/std/input.output/string.streams/stringbuf/ |
D | types.pass.cpp | 33 …tatic_assert((std::is_same<std::basic_stringbuf<char>::pos_type, std::char_traits<char>::pos_type>… in main()
|
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/ |
D | seekg.pass.cpp | 40 typename base::pos_type seekpos(typename base::pos_type sp, in seekpos()
|