HomeSort by relevance Sort by last modified time
    Searched full:pos_type (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/stlport/src/
stdio_streambuf.cpp 75 stdio_streambuf_base::pos_type
90 return pos_type(-1);
99 return pos_type((streamoff)pos.__pos);
101 return pos_type(pos.__fpos_elem[ 0 ]);
103 return pos_type((streamoff)pos._pos);
105 return pos_type(pos);
109 return pos_type(-1);
113 stdio_streambuf_base::pos_type
114 stdio_streambuf_base::seekpos(pos_type pos, ios_base::openmode /* mode */) {
141 return FSETPOS(_M_file, &p) == 0 ? pos : pos_type(-1)
    [all...]
stdio_streambuf.h 61 pos_type seekoff(off_type, ios_base::seekdir,
64 pos_type seekpos(pos_type,
strstream.cpp 191 strstreambuf::pos_type
209 return pos_type(off_type(-1));
226 return pos_type(off_type(-1));
231 return pos_type(off_type(-1));
252 return pos_type(newoff);
255 strstreambuf::pos_type
256 strstreambuf::seekpos(pos_type pos, ios_base::openmode mode) {
257 return seekoff(pos - pos_type(off_type(0)), ios_base::beg, mode);
  /ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp 75 stdio_streambuf_base::pos_type
90 return pos_type(-1);
99 return pos_type((streamoff)pos.__pos);
101 return pos_type(pos.__fpos_elem[ 0 ]);
103 return pos_type((streamoff)pos._pos);
105 return pos_type(pos);
109 return pos_type(-1);
113 stdio_streambuf_base::pos_type
114 stdio_streambuf_base::seekpos(pos_type pos, ios_base::openmode /* mode */) {
141 return FSETPOS(_M_file, &p) == 0 ? pos : pos_type(-1)
    [all...]
stdio_streambuf.h 61 pos_type seekoff(off_type, ios_base::seekdir,
64 pos_type seekpos(pos_type,
strstream.cpp 191 strstreambuf::pos_type
209 return pos_type(off_type(-1));
226 return pos_type(off_type(-1));
231 return pos_type(off_type(-1));
252 return pos_type(newoff);
255 strstreambuf::pos_type
256 strstreambuf::seekpos(pos_type pos, ios_base::openmode mode) {
257 return seekoff(pos - pos_type(off_type(0)), ios_base::beg, mode);
  /external/stlport/test/unit/
sstream_test.cpp 390 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(0) );
392 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(6) );
394 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(3) );
397 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(0) );
399 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(6) );
401 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(3) );
409 CPPUNIT_CHECK( s.tellp() == stringstream::pos_type(7) );
451 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(6) );
452 CPPUNIT_CHECK( o.tellp() == stringstream::pos_type(6) );
459 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(6) )
    [all...]
fstream_test.cpp 281 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(0) )
609 typedef fpos<state_type> pos_type; typedef in struct:my_traits
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
sstream_test.cpp 390 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(0) );
392 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(6) );
394 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(3) );
397 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(0) );
399 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(6) );
401 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(3) );
409 CPPUNIT_CHECK( s.tellp() == stringstream::pos_type(7) );
451 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(6) );
452 CPPUNIT_CHECK( o.tellp() == stringstream::pos_type(6) );
459 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(6) )
    [all...]
fstream_test.cpp 299 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
300 CPPUNIT_CHECK( o.tellp() == ofstream::pos_type(6) );
307 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
308 CPPUNIT_CHECK( o.tellp() == ofstream::pos_type(9) );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
340 CPPUNIT_CHECK( o.tellp() == ofstream::pos_type(expected_pos) );
357 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) );
358 CPPUNIT_CHECK( o.tellp() == ofstream::pos_type(10) );
408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) )
627 typedef fpos<state_type> pos_type; typedef in struct:my_traits
    [all...]
  /ndk/tests/device/test-stlport/unit/
sstream_test.cpp 390 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(0) );
392 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(6) );
394 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(3) );
397 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(0) );
399 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(6) );
401 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(3) );
409 CPPUNIT_CHECK( s.tellp() == stringstream::pos_type(7) );
451 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(6) );
452 CPPUNIT_CHECK( o.tellp() == stringstream::pos_type(6) );
459 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(6) )
    [all...]
  /external/stlport/stlport/stl/
_sstream.h 59 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_type typedef in class:basic_stringstream
    [all...]
_sstream.c 32 # define __BSB_pos_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
309 return pos_type(off_type(-1));
312 return pos_type(off_type(-1));
325 return pos_type(__newoff);
329 return pos_type(off_type(-1));
338 return pos_type(off_type(-1));
347 return pos_type(off_type(-1));
352 return pos_type(__off);
358 ::seekpos(pos_type __pos, ios_base::openmode __mode) {
365 return pos_type(off_type(-1))
    [all...]
_streambuf.c 187 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::pos_type
188 basic_streambuf<_CharT, _Traits>::seekpos(pos_type, ios_base::openmode)
189 { return pos_type(-1); }
192 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::pos_type
195 { return pos_type(-1); }
_strstream.h 78 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
_streambuf.h 55 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,
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 59 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_type typedef in class:basic_stringstream
    [all...]
_sstream.c 32 # define __BSB_pos_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
309 return pos_type(off_type(-1));
312 return pos_type(off_type(-1));
325 return pos_type(__newoff);
329 return pos_type(off_type(-1));
338 return pos_type(off_type(-1));
347 return pos_type(off_type(-1));
352 return pos_type(__off);
358 ::seekpos(pos_type __pos, ios_base::openmode __mode) {
365 return pos_type(off_type(-1))
    [all...]
_streambuf.c 187 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::pos_type
188 basic_streambuf<_CharT, _Traits>::seekpos(pos_type, ios_base::openmode)
189 { return pos_type(-1); }
192 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::pos_type
195 { return pos_type(-1); }
_strstream.h 78 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
_streambuf.h 55 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,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
enc_filebuf.h 46 typedef typename traits_type::pos_type pos_type; typedef in class:enc_filebuf
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
sstream.tcc 147 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
151 pos_type __ret = pos_type(off_type(-1));
180 __ret = pos_type(__newoffi);
187 __ret = pos_type(__newoffo);
194 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
196 seekpos(pos_type __sp, ios_base::openmode __mode)
198 pos_type __ret = pos_type(off_type(-1));
ostream.tcc 235 typename basic_ostream<_CharT, _Traits>::pos_type
239 pos_type __ret = pos_type(-1);
258 seekp(pos_type __pos)
267 const pos_type __p = this->rdbuf()->pubseekpos(__pos,
271 if (__p == pos_type(off_type(-1)))
299 const pos_type __p = this->rdbuf()->pubseekoff(__off, __dir,
303 if (__p == pos_type(off_type(-1)))
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
strstream 89 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir,
92 virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode
158 typedef char_traits<char>::pos_type pos_type;

Completed in 1251 milliseconds

1 2 3