Searched defs:pos_type (Results 1 - 11 of 11) sorted by relevance

/external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Dseekoff.pass.cpp14 // pos_type seekoff(off_type off, ios_base::seekdir way,
16 // pos_type seekpos(pos_type sp,
40 typedef test_buf::pos_type pos_type; typedef
47 pos_type p = f.pubseekoff(-15, std::ios_base::cur);
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
H A Dseekoff.pass.cpp12 // pos_type seekoff(off_type off, ios_base::seekdir way,
14 // pos_type seekpos(pos_type sp,
29 typedef typename base::pos_type pos_type; typedef in struct:test_buf
43 typedef std::filebuf::pos_type pos_type; typedef
51 pos_type p = f.pubseekoff(-15, std::ios_base::cur);
64 typedef std::filebuf::pos_type pos_type; typedef
[all...]
/external/stlport/stlport/stl/
H A D_strstream.h78 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir,
81 virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode
143 typedef char_traits<char>::pos_type pos_type; typedef in class:strstream
H A D_sstream.h59 typedef typename _Traits::pos_type pos_type; typedef in class:basic_stringbuf
90 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir,
93 virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode
121 typedef typename _Traits::pos_type pos_type; typedef in class:basic_istringstream
164 typedef typename _Traits::pos_type pos_type; typedef in class:basic_ostringstream
208 typedef typename _Traits::pos_type pos_typ typedef in class:basic_stringstream
[all...]
H A D_ios.h53 typedef typename _Traits::pos_type pos_type; typedef in class:basic_ios
H A D_istream.h76 typedef typename _Traits::pos_type pos_type; typedef in class:basic_istream
163 pos_type tellg();
164 _Self& seekg(pos_type __pos);
H A D_ostream.h65 typedef typename _Traits::pos_type pos_type; typedef in class:basic_ostream
141 pos_type tellp() {
144 : pos_type(-1);
147 _Self& seekp(pos_type __pos) {
149 if (this->rdbuf()->pubseekpos(__pos, ios_base::out) == pos_type(-1)) {
H A D_streambuf.h55 typedef typename _Traits::pos_type pos_type; typedef in class:basic_streambuf
128 virtual pos_type seekoff(off_type, ios_base::seekdir,
133 virtual pos_type
134 seekpos(pos_type, ios_base::openmode = ios_base::in | ios_base::out);
145 pos_type pubseekoff(off_type __offset, ios_base::seekdir __way,
149 pos_type pubseekpos(pos_type __sp,
H A Dchar_traits.h137 typedef streampos pos_type; typedef in class:__char_traits_base
216 typedef streampos pos_type; typedef in class:char_traits
H A D_fstream.h153 typedef typename _Traits::pos_type pos_type; typedef in class:basic_filebuf
207 virtual pos_type seekoff(off_type, ios_base::seekdir,
209 virtual pos_type seekpos(pos_type,
238 pos_type _M_seek_return(off_type __off, _State_type __state) {
250 pos_type __result(__off);
447 typedef typename _Traits::pos_type pos_type; typedef in class:basic_ifstream
528 typedef typename _Traits::pos_type pos_typ typedef in class:basic_ofstream
607 typedef typename _Traits::pos_type pos_type; typedef in class:basic_fstream
[all...]
/external/stlport/test/unit/
H A Dfstream_test.cpp281 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
282 CPPUNIT_CHECK( o.tellp() == ofstream::pos_type(6) );
289 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
290 CPPUNIT_CHECK( o.tellp() == ofstream::pos_type(9) );
321 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
322 CPPUNIT_CHECK( o.tellp() == ofstream::pos_type(expected_pos) );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) );
340 CPPUNIT_CHECK( o.tellp() == ofstream::pos_type(10) );
390 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
391 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(
609 typedef fpos<state_type> pos_type; typedef in struct:my_traits
[all...]

Completed in 489 milliseconds