/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/ |
noshowpoint.pass.cpp | 12 // class ios_base 14 // ios_base& noshowpoint(ios_base& str); 27 std::ios_base& r = std::noshowpoint(ios);
|
noshowpos.pass.cpp | 12 // class ios_base 14 // ios_base& noshowpos(ios_base& str); 27 std::ios_base& r = std::noshowpos(ios);
|
noskipws.pass.cpp | 12 // class ios_base 14 // ios_base& noskipws(ios_base& str); 27 std::ios_base& r = std::noskipws(ios);
|
nounitbuf.pass.cpp | 12 // class ios_base 14 // ios_base& nounitbuf(ios_base& str); 27 std::ios_base& r = std::nounitbuf(ios);
|
nouppercase.pass.cpp | 12 // class ios_base 14 // ios_base& nouppercase(ios_base& str); 27 std::ios_base& r = std::nouppercase(ios);
|
showbase.pass.cpp | 12 // class ios_base 14 // ios_base& showbase(ios_base& str); 26 std::ios_base& r = std::showbase(ios);
|
showpoint.pass.cpp | 12 // class ios_base 14 // ios_base& showpoint(ios_base& str); 26 std::ios_base& r = std::showpoint(ios);
|
showpos.pass.cpp | 12 // class ios_base 14 // ios_base& showpos(ios_base& str); 26 std::ios_base& r = std::showpos(ios);
|
skipws.pass.cpp | 12 // class ios_base 14 // ios_base& skipws(ios_base& str); 26 std::ios_base& r = std::skipws(ios);
|
unitbuf.pass.cpp | 12 // class ios_base 14 // ios_base& unitbuf(ios_base& str); 26 std::ios_base& r = std::unitbuf(ios);
|
uppercase.pass.cpp | 12 // class ios_base 14 // ios_base& uppercase(ios_base& str); 26 std::ios_base& r = std::uppercase(ios);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/ |
pubseekpos.pass.cpp | 16 // ios_base::openmode which = ios_base::in | ios_base::out; 32 assert(t.pubseekpos(0, std::ios_base::app) == -1);
|
/external/libcxx/test/input.output/string.streams/stringbuf/stringbuf.cons/ |
string.pass.cpp | 16 // ios_base::openmode which = ios_base::in | ios_base::out); 28 std::stringbuf buf("testing", std::ios_base::in); 32 std::stringbuf buf("testing", std::ios_base::out); 40 std::wstringbuf buf(L"testing", std::ios_base::in); 44 std::wstringbuf buf(L"testing", std::ios_base::out);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.cons/ |
string.pass.cpp | 16 // ios_base::openmode which = ios_base::in | ios_base::out); 28 std::stringbuf buf("testing", std::ios_base::in); 32 std::stringbuf buf("testing", std::ios_base::out); 40 std::wstringbuf buf(L"testing", std::ios_base::in); 44 std::wstringbuf buf(L"testing", std::ios_base::out);
|
/external/stlport/src/details/ |
fstream_win32io.cpp | 46 static ios_base::openmode flag_to_openmode(int mode) { 47 ios_base::openmode ret = ios_base::__default_mode; 51 ret = ios_base::in; break; 53 ret = ios_base::out; break; 55 ret = ios_base::in | ios_base::out; break; 59 ret |= ios_base::app; 62 ret |= ios_base::binary; 129 static ios_base::openmode _get_osfflags(int fd, HANDLE oshandle) [all...] |
/ndk/sources/cxx-stl/stlport/src/details/ |
fstream_win32io.cpp | 46 static ios_base::openmode flag_to_openmode(int mode) { 47 ios_base::openmode ret = ios_base::__default_mode; 51 ret = ios_base::in; break; 53 ret = ios_base::out; break; 55 ret = ios_base::in | ios_base::out; break; 59 ret |= ios_base::app; 62 ret |= ios_base::binary; 129 static ios_base::openmode _get_osfflags(int fd, HANDLE oshandle) [all...] |
/external/libcxx/include/ |
istream | 45 basic_istream& operator>>(ios_base& (*pf)(ios_base&)); 84 basic_istream& seekg(off_type, ios_base::seekdir); 203 basic_istream& operator>>(ios_base& (*__pf)(ios_base&)); 243 basic_istream& seekg(off_type __off, ios_base::seekdir __dir); 272 if (!__noskipws && (__is.flags() & ios_base::skipws)) 282 __is.setstate(ios_base::failbit | ios_base::eofbit); 287 __is.setstate(ios_base::failbit) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
istream | 45 basic_istream& operator>>(ios_base& (*pf)(ios_base&)); 84 basic_istream& seekg(off_type, ios_base::seekdir); 203 basic_istream& operator>>(ios_base& (*__pf)(ios_base&)); 243 basic_istream& seekg(off_type __off, ios_base::seekdir __dir); 272 if (!__noskipws && (__is.flags() & ios_base::skipws)) 282 __is.setstate(ios_base::failbit | ios_base::eofbit); 287 __is.setstate(ios_base::failbit) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/ |
istream | 45 basic_istream& operator>>(ios_base& (*pf)(ios_base&)); 84 basic_istream& seekg(off_type, ios_base::seekdir); 203 basic_istream& operator>>(ios_base& (*__pf)(ios_base&)); 243 basic_istream& seekg(off_type __off, ios_base::seekdir __dir); 272 if (!__noskipws && (__is.flags() & ios_base::skipws)) 282 __is.setstate(ios_base::failbit | ios_base::eofbit); 287 __is.setstate(ios_base::failbit) [all...] |
/external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.callback/ |
register_callback.pass.cpp | 12 // class ios_base 35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) 37 if (ev == std::ios_base::imbue_event) 48 std::ios_base& b = t;
|
/external/libcxx/test/input.output/string.streams/stringstream.cons/ |
default.pass.cpp | 15 // explicit basic_stringstream(ios_base::openmode which = ios_base::out|ios_base::in); 29 std::stringstream ss(std::ios_base::in); 41 std::wstringstream ss(std::ios_base::in);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.callback/ |
register_callback.pass.cpp | 12 // class ios_base 35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) 37 if (ev == std::ios_base::imbue_event) 48 std::ios_base& b = t;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringstream.cons/ |
default.pass.cpp | 15 // explicit basic_stringstream(ios_base::openmode which = ios_base::out|ios_base::in); 29 std::stringstream ss(std::ios_base::in); 41 std::wstringstream ss(std::ios_base::in);
|
/external/stlport/stlport/stl/ |
_sstream.h | 68 explicit basic_stringbuf(ios_base::openmode __mode 69 = ios_base::in | ios_base::out); 70 explicit basic_stringbuf(const _String& __s, ios_base::openmode __mode 71 = ios_base::in | ios_base::out); 90 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir, 91 ios_base::openmode __mode 92 = ios_base::in | ios_base::out) [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.h | 68 explicit basic_stringbuf(ios_base::openmode __mode 69 = ios_base::in | ios_base::out); 70 explicit basic_stringbuf(const _String& __s, ios_base::openmode __mode 71 = ios_base::in | ios_base::out); 90 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir, 91 ios_base::openmode __mode 92 = ios_base::in | ios_base::out) [all...] |