Home
last modified time | relevance | path

Searched refs:ate (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/details/
Dfstream_stdio.cpp183 switch (openmode & (~ios_base::ate)) { in _M_open()
245 if (openmode & ios_base::ate) { in _M_open()
Dfstream_unistd.cpp166 switch ( openmode & (~ios_base::ate & ~ios_base::binary) ) { in _M_open()
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) { in _M_open()
Dfstream_win32io.cpp228 switch (openmode & (~ios_base::ate & ~ios_base::binary)) { in _M_open()
277 (((openmode & ios_base::ate) != 0) && in _M_open()
/ndk/tests/device/test-stlport/unit/
Dfstream_test.cpp830 ofstream nullStream(nullStreamName, ios_base::ate); in null_stream()
850 ifstream nullStream(nullStreamName, ios_base::ate); in null_stream()
860 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::ate); in null_stream()
/ndk/tests/device/test-gnustl-full/unit/
Dfstream_test.cpp830 ofstream nullStream(nullStreamName, ios_base::ate); in null_stream()
850 ifstream nullStream(nullStreamName, ios_base::ate); in null_stream()
860 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::ate); in null_stream()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_sstream.c78 this->setg(__data_ptr, (_M_mode & ios_base::ate) ? __data_end : __data_ptr, __data_end); in _M_set_ptrs()
83 if ( _M_mode & (ios_base::app | ios_base::ate) ) { in _M_set_ptrs()
D_ios_base.h95 _STLP_STATIC_CONSTANT(int, ate = 0x02);
/ndk/sources/cxx-stl/stlport/src/
Dios.cpp71 const ios_base::openmode ios_base::ate; member in ios_base