Searched defs:showbase (Results 1 - 7 of 7) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
H A Dios.cpp55 const ios_base::fmtflags ios_base::showbase; member in class:ios_base
/ndk/tests/device/test-gnustl-full/unit/
H A Dmoney_facets_test.cpp67 ostr << showbase; local
287 ostr << showbase; local
H A Dnum_put_get_test.cpp614 #define CHECK_COMPLETE(type, val, base, showbase, showpos, casing, width, adjust, expected) \
618 ostr << base << showbase << showpos << casing << setw(width) << adjust << tmp; \
672 //Even with showbase, 0 value gives "0" (see printf documentation)
673 CHECK_COMPLETE(short, 0, oct, showbase, noshowpos, nouppercase, 0, right, "0")
674 CHECK_COMPLETE(short, 0, oct, showbase, showpos, nouppercase, 6, right, " 0")
676 CHECK_COMPLETE(short, 1, oct, showbase, noshowpos, nouppercase, 6, right, " 01")
677 CHECK_COMPLETE(short, 1, oct, showbase, noshowpos, nouppercase, 6, left, "01 ")
678 CHECK_COMPLETE(short, 1, oct, showbase, showpos, nouppercase, 6, internal, " 01")
716 CHECK_COMPLETE(short, 0, dec, showbase, showpos, nouppercase, 0, right, "+0")
717 CHECK_COMPLETE(short, 0, dec, showbase, showpo
1030 s << hex << showbase << 0; local
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dmoney_facets_test.cpp67 ostr << showbase; local
287 ostr << showbase; local
H A Dnum_put_get_test.cpp614 #define CHECK_COMPLETE(type, val, base, showbase, showpos, casing, width, adjust, expected) \
618 ostr << base << showbase << showpos << casing << setw(width) << adjust << tmp; \
672 //Even with showbase, 0 value gives "0" (see printf documentation)
673 CHECK_COMPLETE(short, 0, oct, showbase, noshowpos, nouppercase, 0, right, "0")
674 CHECK_COMPLETE(short, 0, oct, showbase, showpos, nouppercase, 6, right, " 0")
676 CHECK_COMPLETE(short, 1, oct, showbase, noshowpos, nouppercase, 6, right, " 01")
677 CHECK_COMPLETE(short, 1, oct, showbase, noshowpos, nouppercase, 6, left, "01 ")
678 CHECK_COMPLETE(short, 1, oct, showbase, showpos, nouppercase, 6, internal, " 01")
716 CHECK_COMPLETE(short, 0, dec, showbase, showpos, nouppercase, 0, right, "+0")
717 CHECK_COMPLETE(short, 0, dec, showbase, showpo
1032 s << hex << showbase << 0; local
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dios.cpp101 const ios_base::fmtflags ios_base::showbase; member in class:ios_base
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_ios_base.h78 _STLP_STATIC_CONSTANT(int, showbase = 0x0200);
275 inline ios_base& _STLP_CALL showbase(ios_base& __s) function
276 { __s.setf(ios_base::showbase); return __s;}
279 { __s.unsetf(ios_base::showbase); return __s;}

Completed in 67 milliseconds