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

/external/stlport/src/
H A Dios.cpp53 const ios_base::fmtflags ios_base::showbase; member in class:ios_base
/external/stlport/test/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...]
/external/astl/include/
H A Dios_base.h121 // showbase: Generates a prefix indicating the numeric base of generated
139 static const fmtflags showbase = android::ios_baseflags_showbase; member in class:std::ios_base
/external/stlport/stlport/stl/
H A D_ios_base.h76 _STLP_STATIC_CONSTANT(int, showbase = 0x0200);
273 inline ios_base& _STLP_CALL showbase(ios_base& __s) function
274 { __s.setf(ios_base::showbase); return __s;}
277 { __s.unsetf(ios_base::showbase); return __s;}

Completed in 120 milliseconds