/ndk/tests/device/test-gnustl-full/unit/ |
D | strstream_buffer_read_test.cpp | 31 char cur; in read_from_buffer() local 32 stream >> cur; in read_from_buffer() 33 CPPUNIT_ASSERT(cur == 'H'); in read_from_buffer()
|
D | fstream_test.cpp | 286 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() 357 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) … in tellp() 408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) ); in seek() 409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) ); in seek() 435 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur); in seek() 439 offset = s.rdbuf()->pubseekoff( -offset, ios_base::cur ); in seek() 447 pos = s.rdbuf()->pubseekoff(0, ios_base::cur); in seek() [all …]
|
D | sstream_test.cpp | 393 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()
|
D | unordered_test.cpp | 286 UnorderedMap1::iterator cur = body.find(3); in user_case() local 287 CPPUNIT_ASSERT( cur != body.end() ); in user_case()
|
/ndk/tests/device/test-stlport/unit/ |
D | strstream_buffer_read_test.cpp | 31 char cur; in read_from_buffer() local 32 stream >> cur; in read_from_buffer() 33 CPPUNIT_ASSERT(cur == 'H'); in read_from_buffer()
|
D | fstream_test.cpp | 286 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() 357 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) … in tellp() 408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) ); in seek() 409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) ); in seek() 435 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur); in seek() 439 offset = s.rdbuf()->pubseekoff( -offset, ios_base::cur ); in seek() 447 pos = s.rdbuf()->pubseekoff(0, ios_base::cur); in seek() [all …]
|
D | sstream_test.cpp | 393 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()
|
D | unordered_test.cpp | 286 UnorderedMap1::iterator cur = body.find(3); in user_case() local 287 CPPUNIT_ASSERT( cur != body.end() ); in user_case()
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | utils.c | 298 struct open_file *cur; local 303 while ( (cur = prev->link) ) 305 if (!stream || stream == cur->fp) 307 do_ck_fclose (cur->fp); 308 prev->link = cur->link; 309 FREE(cur->name); 310 FREE(cur); 313 prev = cur;
|
D | compile.c | 64 const unsigned char *cur; member 214 CAST(unsigned long)(prog.cur-prog.base), 229 if (prog.cur) in inchar() 231 if (prog.cur < prog.end) in inchar() 232 ch = *prog.cur++; in inchar() 254 if (prog.cur) 256 if (prog.cur <= prog.base || *--prog.cur != ch) 1118 if ( (prog.base && prog.cur==2+prog.base) 1581 prog.cur = prog.base; 1582 prog.end = prog.cur + len; [all …]
|
/ndk/sources/host-tools/ndk-stack/elff/ |
D | dwarf_defs.h | 198 const Elf_Byte* cur = &val; in get_common() local 200 while ((*cur & 0x80) != 0) { in get_common() 201 value->u64 |= (static_cast<Elf_Xword>(*cur) & 0x7F) << shift; in get_common() 204 cur++; in get_common() 206 value->u64 |= (static_cast<Elf_Xword>(*cur) & 0x7F) << shift; in get_common() 217 if (((*cur) & 0x40) != 0) { in get_common() 231 if (((*cur) & 0x40) != 0) { in get_common()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _fstream.c | 139 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()
|
D | _ios_base.h | 105 _STLP_STATIC_CONSTANT(int, cur = 0x02);
|
D | _ostream.h | 143 ? this->rdbuf()->pubseekoff(0, ios_base::cur, ios_base::out) in tellp()
|
D | _sstream.c | 322 case ios_base::cur: in seekoff()
|
D | _istream.c | 498 return (__buf && !this->fail()) ? __buf->pubseekoff(0, ios_base::cur, ios_base::in) in tellg()
|
/ndk/build/tools/ |
D | prebuilt-common.sh | 80 local path cur item 82 cur="." 85 cur="../$cur" 88 echo ${cur%%/.}
|
/ndk/sources/cxx-stl/stlport/src/ |
D | fstream.cpp | 66 streamoff __cur = __this->_M_base._M_seek(0, ios_base::cur); in _M_doit()
|
D | stdio_streambuf.cpp | 83 case ios_base::cur: in seekoff()
|
D | ios.cpp | 81 const ios_base::seekdir ios_base::cur; member in ios_base
|
D | strstream.cpp | 222 case ios_base::cur: in seekoff()
|
/ndk/sources/cxx-stl/stlport/src/details/ |
D | fstream_stdio.cpp | 352 case ios_base::cur: in _M_seek()
|
D | fstream_unistd.cpp | 296 case ios_base::cur: in _M_seek()
|
D | fstream_win32io.cpp | 557 case ios_base::cur: in _M_seek()
|
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/ |
D | c_locale_win32.c | 298 static void MapCtypeMasks(unsigned short *cur, unsigned short *end) { in MapCtypeMasks() argument 299 for (; cur != end; ++cur) { in MapCtypeMasks() 300 *cur = MapCtypeMask(*cur); in MapCtypeMasks()
|