Home
last modified time | relevance | path

Searched refs:cur (Results 1 – 25 of 42) sorted by relevance

12

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
Dforeach.hpp140 done( static_any_t cur, static_any_t end, C&, mpl::false_ ) in done() argument
142 return static_any_cast<BOOST_DEDUCED_TYPENAME C::iterator>( cur ) == in done()
150 done( static_any_t cur, static_any_t end, C const&, mpl::true_ ) in done() argument
152 return static_any_cast<BOOST_DEDUCED_TYPENAME C::const_iterator>( cur ) == in done()
164 next( static_any_t cur, C&, mpl::false_ ) in next() argument
166 ++static_any_cast<BOOST_DEDUCED_TYPENAME C::iterator>( cur ); in next()
173 next( static_any_t cur, C const&, mpl::true_ ) in next() argument
175 ++static_any_cast<BOOST_DEDUCED_TYPENAME C::const_iterator>( cur ); in next()
186 deref( static_any_t cur, C&, ::boost::type<RefType>, mpl::false_ ) in deref() argument
188 return *static_any_cast<BOOST_DEDUCED_TYPENAME C::iterator>( cur ); in deref()
[all …]
/ndk/tests/device/test-stlport/unit/
Dstrstream_buffer_read_test.cpp31 char cur; in read_from_buffer() local
32 stream >> cur; in read_from_buffer()
33 CPPUNIT_ASSERT(cur == 'H'); in read_from_buffer()
Dfstream_test.cpp286 is.seekg( 8, ios_base::cur ); in tellg()
299 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) ); in tellp()
307 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) ); in tellp()
339 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expe… in tellp()
358 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) … in tellp()
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) ); in seek()
410 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) ); in seek()
436 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur); in seek()
440 offset = s.rdbuf()->pubseekoff( -offset, ios_base::cur ); in seek()
448 pos = s.rdbuf()->pubseekoff(0, ios_base::cur); in seek()
[all …]
Dsstream_test.cpp393 s.seekg( -3, ios::cur ); in seek()
400 is.seekg( -3, ios::cur ); in seek()
451 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(… in tellp()
459 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(… in tellp()
467 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(… in tellp()
/ndk/tests/device/test-gnustl-full/unit/
Dstrstream_buffer_read_test.cpp31 char cur; in read_from_buffer() local
32 stream >> cur; in read_from_buffer()
33 CPPUNIT_ASSERT(cur == 'H'); in read_from_buffer()
Dfstream_test.cpp286 is.seekg( 8, ios_base::cur ); in tellg()
299 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) ); in tellp()
307 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) ); in tellp()
339 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expe… in tellp()
358 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) … in tellp()
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) ); in seek()
410 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) ); in seek()
436 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur); in seek()
440 offset = s.rdbuf()->pubseekoff( -offset, ios_base::cur ); in seek()
448 pos = s.rdbuf()->pubseekoff(0, ios_base::cur); in seek()
[all …]
Dsstream_test.cpp393 s.seekg( -3, ios::cur ); in seek()
400 is.seekg( -3, ios::cur ); in seek()
451 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(… in tellp()
459 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(… in tellp()
467 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(… in tellp()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.virtuals/
Dseekoff.pass.cpp26 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out) == -1); in main()
29 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::in | std::ios_base::out) == -1); in main()
33 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::in) == 6); in main()
41 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::in) == -1); in main()
44 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out | std::ios_base::in) == -1); in main()
49 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out) == 7); in main()
60 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::in) == 6); in main()
68 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out | std::ios_base::in) == -1); in main()
76 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out) == 7); in main()
86 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out) == -1); in main()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
Dseekoff.pass.cpp26 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out) == -1); in main()
29 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::in | std::ios_base::out) == -1); in main()
33 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::in) == 6); in main()
42 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::in) == 6); in main()
45 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out | std::ios_base::in) == -1); in main()
50 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out) == 7); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.ios.members/
Dseek_dir.pass.cpp23 std::strstream::seek_dir b = std::strstream::cur; in main()
24 assert(b == std::ios::cur); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_seekdir/
Dseekdir.pass.cpp23 assert(std::ios_base::beg != std::ios_base::cur); in main()
25 assert(std::ios_base::cur != std::ios_base::end); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
Dseekg_off.pass.cpp57 is.seekg(5, std::ios_base::cur); in main()
67 is.seekg(5, std::ios_base::cur); in main()
Dtellg.pass.cpp45 assert(way == std::ios_base::cur); in seekoff()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
Dseekoff.pass.cpp34 pos_type p = f.pubseekoff(-15, std::ios_base::cur); in main()
55 pos_type p = f.pubseekoff(-15, std::ios_base::cur); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_fstream.c139 streamoff __pos = _M_base._M_seek(0, ios_base::cur); in showmanyc()
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur)) in seekoff()
309 _STLP_ASSERT(__whence == ios_base::cur) in seekoff()
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust) in seekoff()
321 … : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type()); in seekoff()
335 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __eadj) in seekoff()
336 … : _M_seek_return(_M_base._M_seek(__off - __eadj, ios_base::cur), _State_type()); in seekoff()
370 streamoff __cur = _M_base._M_seek(0, ios_base::cur); in seekoff()
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-printers.cc261 const CharType cur = begin[index]; in PrintCharsAsStringTo() local
262 if (is_previous_hex && IsXDigit(cur)) { in PrintCharsAsStringTo()
268 is_previous_hex = PrintAsStringLiteralTo(cur, os) == kHexEscape; in PrintCharsAsStringTo()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/
Dtellp.pass.cpp35 assert(way == std::ios_base::cur); in seekoff()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
Dseekoff.pass.cpp47 pos_type p = f.pubseekoff(-15, std::ios_base::cur); in main()
/ndk/build/tools/
Dprebuilt-common.sh149 local path cur item
151 cur="."
154 cur="../$cur"
157 echo ${cur%%/.}
/ndk/sources/cxx-stl/stlport/src/
Dfstream.cpp66 streamoff __cur = __this->_M_base._M_seek(0, ios_base::cur); in _M_doit()
Dstdio_streambuf.cpp83 case ios_base::cur: in seekoff()
Dios.cpp81 const ios_base::seekdir ios_base::cur; member in ios_base
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstrstream.cpp242 case ios::cur: in seekoff()
260 case ios::cur: in seekoff()
/ndk/sources/cxx-stl/stlport/src/details/
Dfstream_stdio.cpp352 case ios_base::cur: in _M_seek()
Dfstream_unistd.cpp296 case ios_base::cur: in _M_seek()

12