Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_openmode/
Dopenmode.pass.cpp27 assert(std::ios_base::ate); in main()
36 & std::ios_base::ate in main()
/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-gnustl-full/unit/
Dfstream_test.cpp831 ofstream nullStream(nullStreamName, ios_base::ate); in null_stream()
851 ifstream nullStream(nullStreamName, ios_base::ate); in null_stream()
861 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::ate); in null_stream()
/ndk/tests/device/test-stlport/unit/
Dfstream_test.cpp831 ofstream nullStream(nullStreamName, ios_base::ate); in null_stream()
851 ifstream nullStream(nullStreamName, ios_base::ate); in null_stream()
861 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::ate); in null_stream()
/ndk/sources/cxx-stl/stlport/src/
Dios.cpp73 const ios_base::openmode ios_base::ate; member in ios_base
/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.h97 _STLP_STATIC_CONSTANT(int, ate = 0x02);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dios.cpp117 const ios_base::openmode ios_base::ate; member in ios_base
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dios59 static constexpr openmode ate;
266 static const openmode ate = 0x02;
Dfstream475 switch (__mode & ~ios_base::ate)
529 if (__mode & ios_base::ate)
Dsstream466 if (__mode_ & (ios_base::app | ios_base::ate))