HomeSort by relevance Sort by last modified time
    Searched refs:ios_base (Results 1 - 25 of 461) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 12 // class ios_base
38 assert(std::ios_base::boolalpha);
39 assert(std::ios_base::dec);
40 assert(std::ios_base::fixed);
41 assert(std::ios_base::hex);
42 assert(std::ios_base::internal);
43 assert(std::ios_base::left);
44 assert(std::ios_base::oct);
45 assert(std::ios_base::right);
46 assert(std::ios_base::scientific)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/ios.types/ios_iostate/
iostate.pass.cpp 12 // class ios_base
24 assert(std::ios_base::badbit);
25 assert(std::ios_base::eofbit);
26 assert(std::ios_base::failbit);
30 ( std::ios_base::badbit
31 & std::ios_base::eofbit
32 & std::ios_base::failbit) == 0
35 assert(std::ios_base::goodbit == 0);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/ios.types/ios_openmode/
openmode.pass.cpp 12 // class ios_base
26 assert(std::ios_base::app);
27 assert(std::ios_base::ate);
28 assert(std::ios_base::binary);
29 assert(std::ios_base::in);
30 assert(std::ios_base::out);
31 assert(std::ios_base::trunc);
35 ( std::ios_base::app
36 & std::ios_base::ate
37 & std::ios_base::binar
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-context.cpp 9 class ios_base { class
15 static ios_base::Init __ioinit;
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/ios.members.static/
sync_with_stdio.pass.cpp 19 assert( std::ios_base::sync_with_stdio(false));
20 assert(!std::ios_base::sync_with_stdio(false));
21 assert(!std::ios_base::sync_with_stdio(true));
22 assert( std::ios_base::sync_with_stdio(true));
23 assert( std::ios_base::sync_with_stdio());
24 assert( std::ios_base::sync_with_stdio(false));
25 assert(!std::ios_base::sync_with_stdio());
26 assert( std::ios_base::sync_with_stdio());
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/ios.types/ios_seekdir/
seekdir.pass.cpp 12 // class ios_base
23 assert(std::ios_base::beg != std::ios_base::cur);
24 assert(std::ios_base::beg != std::ios_base::end);
25 assert(std::ios_base::cur != std::ios_base::end);
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
seekoff.pass.cpp 14 // pos_type seekoff(off_type off, ios_base::seekdir way,
15 // ios_base::openmode which = ios_base::in | ios_base::out);
25 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out) == -1);
26 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out) == -1);
27 assert(sb.pubseekoff(-3, std::ios_base::end, std::ios_base::out) == -1)
    [all...]
seekpos.pass.cpp 15 // ios_base::openmode which = ios_base::in | ios_base::out);
25 assert(sb.pubseekpos(3, std::ios_base::out) == -1);
26 assert(sb.pubseekpos(3, std::ios_base::in | std::ios_base::out) == -1);
27 assert(sb.pubseekpos(3, std::ios_base::in) == 3);
33 assert(sb.pubseekpos(3, std::ios_base::in) == 3);
34 assert(sb.pubseekpos(3, std::ios_base::out | std::ios_base::in) == 3)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/ios.base.storage/
xalloc.pass.cpp 12 // class ios_base
21 assert(std::ios_base::xalloc() == 0);
22 assert(std::ios_base::xalloc() == 1);
23 assert(std::ios_base::xalloc() == 2);
24 assert(std::ios_base::xalloc() == 3);
25 assert(std::ios_base::xalloc() == 4);
  /external/stlport/src/
ios.cpp 31 // ios_base members
33 // class ios_base::failure, a subclass of exception. It's used solely
36 ios_base::failure::failure(const string& s)
40 ios_base::failure::~failure() _STLP_NOTHROW_INHERENTLY {}
43 // Definitions of ios_base's formatting flags.
44 const ios_base::fmtflags ios_base::left;
45 const ios_base::fmtflags ios_base::right;
46 const ios_base::fmtflags ios_base::internal
285 ios_base::ios_base() function in class:ios_base
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
ios.cpp 31 // ios_base members
34 // class ios_base::failure, a subclass of exception. It's used solely
37 ios_base::failure::failure(const string& s)
41 ios_base::failure::~failure() _STLP_NOTHROW_INHERENTLY {}
45 // Definitions of ios_base's formatting flags.
46 const ios_base::fmtflags ios_base::left;
47 const ios_base::fmtflags ios_base::right;
48 const ios_base::fmtflags ios_base::internal
287 ios_base::ios_base() function in class:ios_base
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/string.streams/stringbuf/stringbuf.virtuals/
seekoff.pass.cpp 15 // pos_type seekoff(off_type off, ios_base::seekdir way,
16 // ios_base::openmode which = ios_base::in | ios_base::out);
24 std::stringbuf sb("0123456789", std::ios_base::in);
25 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out) == -1);
26 assert(sb.pubseekoff(3, std::ios_base::cur, std::ios_base::out) == -1);
27 assert(sb.pubseekoff(-3, std::ios_base::end, std::ios_base::out) == -1)
    [all...]
  /external/stlport/stlport/stl/
_ios_base.h 41 // Class ios_base. This is the base class of the ios hierarchy, which
48 class _STLP_CLASS_DECLSPEC ios_base { class
151 virtual ~ios_base();
155 typedef void (*event_callback)(event, ios_base&, int __index);
167 operator void*() const { return !fail() ? (void*) __CONST_CAST(ios_base*,this) : (void*) 0; }
181 // ios_base's private data members. Does not copy _M_exception_mask
183 void _M_copy_state(const ios_base& __x);
197 ios_base(); // Default constructor.
206 ios_base(const ios_base&)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 41 // Class ios_base. This is the base class of the ios hierarchy, which
48 class _STLP_CLASS_DECLSPEC ios_base { class
153 virtual ~ios_base();
157 typedef void (*event_callback)(event, ios_base&, int __index);
169 operator void*() const { return !fail() ? (void*) __CONST_CAST(ios_base*,this) : (void*) 0; }
183 // ios_base's private data members. Does not copy _M_exception_mask
185 void _M_copy_state(const ios_base& __x);
199 ios_base(); // Default constructor.
208 ios_base(const ios_base&)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 41 // Class ios_base. This is the base class of the ios hierarchy, which
48 class _STLP_CLASS_DECLSPEC ios_base { class
151 virtual ~ios_base();
155 typedef void (*event_callback)(event, ios_base&, int __index);
167 operator void*() const { return !fail() ? (void*) __CONST_CAST(ios_base*,this) : (void*) 0; }
181 // ios_base's private data members. Does not copy _M_exception_mask
183 void _M_copy_state(const ios_base& __x);
197 ios_base(); // Default constructor.
206 ios_base(const ios_base&)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 41 // Class ios_base. This is the base class of the ios hierarchy, which
48 class _STLP_CLASS_DECLSPEC ios_base { class
151 virtual ~ios_base();
155 typedef void (*event_callback)(event, ios_base&, int __index);
167 operator void*() const { return !fail() ? (void*) __CONST_CAST(ios_base*,this) : (void*) 0; }
181 // ios_base's private data members. Does not copy _M_exception_mask
183 void _M_copy_state(const ios_base& __x);
197 ios_base(); // Default constructor.
206 ios_base(const ios_base&)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 41 // Class ios_base. This is the base class of the ios hierarchy, which
48 class _STLP_CLASS_DECLSPEC ios_base { class
151 virtual ~ios_base();
155 typedef void (*event_callback)(event, ios_base&, int __index);
167 operator void*() const { return !fail() ? (void*) __CONST_CAST(ios_base*,this) : (void*) 0; }
181 // ios_base's private data members. Does not copy _M_exception_mask
183 void _M_copy_state(const ios_base& __x);
197 ios_base(); // Default constructor.
206 ios_base(const ios_base&)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 41 // Class ios_base. This is the base class of the ios hierarchy, which
48 class _STLP_CLASS_DECLSPEC ios_base { class
153 virtual ~ios_base();
157 typedef void (*event_callback)(event, ios_base&, int __index);
169 operator void*() const { return !fail() ? (void*) __CONST_CAST(ios_base*,this) : (void*) 0; }
183 // ios_base's private data members. Does not copy _M_exception_mask
185 void _M_copy_state(const ios_base& __x);
199 ios_base(); // Default constructor.
208 ios_base(const ios_base&)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/std.manip/
setbase.pass.cpp 30 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
32 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec);
34 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
36 assert((is.flags() & std::ios_base::basefield) == 0);
42 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct);
44 assert((os.flags() & std::ios_base::basefield) == std::ios_base::dec)
    [all...]
resetiosflags.pass.cpp 12 // T1 resetiosflags(ios_base::fmtflags mask);
29 assert(is.flags() & std::ios_base::skipws);
30 is >> std::resetiosflags(std::ios_base::skipws);
31 assert(!(is.flags() & std::ios_base::skipws));
36 assert(os.flags() & std::ios_base::skipws);
37 os << std::resetiosflags(std::ios_base::skipws);
38 assert(!(os.flags() & std::ios_base::skipws));
43 assert(is.flags() & std::ios_base::skipws);
44 is >> std::resetiosflags(std::ios_base::skipws);
45 assert(!(is.flags() & std::ios_base::skipws))
    [all...]
setiosflags.pass.cpp 12 // T2 setiosflags (ios_base::fmtflags mask);
29 assert(!(is.flags() & std::ios_base::oct));
30 is >> std::setiosflags(std::ios_base::oct);
31 assert(is.flags() & std::ios_base::oct);
36 assert(!(os.flags() & std::ios_base::oct));
37 os << std::setiosflags(std::ios_base::oct);
38 assert(os.flags() & std::ios_base::oct);
43 assert(!(is.flags() & std::ios_base::oct));
44 is >> std::setiosflags(std::ios_base::oct);
45 assert(is.flags() & std::ios_base::oct)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.cons/
pointer.pass.cpp 15 // explicit basic_fstream(const char* s, ios_base::openmode mode = ios_base::in | ios_base::out);
25 std::fstream fs(temp, std::ios_base::in | std::ios_base::out
26 | std::ios_base::trunc);
35 std::wfstream fs(temp, std::ios_base::in | std::ios_base::out
36 | std::ios_base::trunc);
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.ios.members/
streamoff.pass.cpp 12 // class ios_base
23 static_assert((std::is_integral<std::ios_base::streamoff>::value), "");
24 static_assert((std::is_signed<std::ios_base::streamoff>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
pubseekoff.pass.cpp 15 // pos_type pubseekoff(off_type off, ios_base::seekdir way,
16 // ios_base::openmode which = ios_base::in | ios_base::out);
32 assert(t.pubseekoff(0, std::ios_base::beg) == -1);
33 assert(t.pubseekoff(0, std::ios_base::beg, std::ios_base::app) == -1);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
ios_base.h 27 /** @file ios_base.h
197 // 27.4.2 Class ios_base
204 * people will only see @c ios_base when they need to specify the full
207 class ios_base class
215 * 27.4.2.1.1 Class ios_base::failure
237 // 27.4.2.1.2 Type ios_base::fmtflags
326 // 27.4.2.1.3 Type ios_base::iostate
355 // 27.4.2.1.4 Type ios_base::openmode
391 // 27.4.2.1.5 Type ios_base::seekdir
437 * @param ios_base Reference to the ios_base object
    [all...]

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 91011>>