/external/stlport/test/unit/ |
D | num_put_get_test.cpp | 614 #define CHECK_COMPLETE(type, val, base, showbase, showpos, casing, width, adjust, expected) \ argument 618 ostr << base << showbase << showpos << casing << setw(width) << adjust << tmp; \ 673 CHECK_COMPLETE(short, 0, oct, showbase, noshowpos, nouppercase, 0, right, "0") in num_put_integer() 674 CHECK_COMPLETE(short, 0, oct, showbase, showpos, nouppercase, 6, right, " 0") in num_put_integer() 676 CHECK_COMPLETE(short, 1, oct, showbase, noshowpos, nouppercase, 6, right, " 01") in num_put_integer() 677 CHECK_COMPLETE(short, 1, oct, showbase, noshowpos, nouppercase, 6, left, "01 ") in num_put_integer() 678 CHECK_COMPLETE(short, 1, oct, showbase, showpos, nouppercase, 6, internal, " 01") in num_put_integer() 716 CHECK_COMPLETE(short, 0, dec, showbase, showpos, nouppercase, 0, right, "+0") in num_put_integer() 717 CHECK_COMPLETE(short, 0, dec, showbase, showpos, nouppercase, 6, right, " +0") in num_put_integer() 718 CHECK_COMPLETE(short, 1, dec, showbase, showpos, nouppercase, 6, right, " +1") in num_put_integer() [all …]
|
D | money_facets_test.cpp | 67 ostr << showbase; in _money_put_get2() 287 ostr << showbase; in _money_put_X_bug()
|
/external/stlport/stlport/stl/ |
D | _ios_base.h | 76 _STLP_STATIC_CONSTANT(int, showbase = 0x0200); 273 inline ios_base& _STLP_CALL showbase(ios_base& __s) in showbase() function 274 { __s.setf(ios_base::showbase); return __s;} in showbase() 277 { __s.unsetf(ios_base::showbase); return __s;} in noshowbase()
|
D | _num_put.c | 174 (__flg & ios_base::showbase) && in __copy_integer_and_fill() 211 if (__flags & ios_base::showbase) in __put_integer() 242 if (__flags & ios_base::showbase) in __put_integer() 326 if (__flags & ios_base::showbase) in __write_integer_backward() 342 if (__flags & ios_base::showbase) { in __write_integer_backward() 481 __f.setf(ios_base::showbase); in do_put()
|
D | _monetary.c | 149 bool __symbol_required = (__str.flags() & ios_base::showbase) != 0; in __money_do_get() 421 bool __generate_curr = (__str.flags() & ios_base::showbase) !=0; in __money_do_put()
|
/external/stlport/stlport/using/ |
D | ios | 15 using _STLP_NEW_IO_NAMESPACE::showbase;
|
/external/chromium/chrome/browser/policy/ |
D | configuration_policy_loader_win.cc | 78 << std::showbase << std::hex << object; in OnObjectSignaled()
|
/external/astl/include/ |
D | ios_base.h | 139 static const fmtflags showbase = android::ios_baseflags_showbase; variable
|
/external/stlport/src/ |
D | ios.cpp | 53 const ios_base::fmtflags ios_base::showbase; member in ios_base
|
/external/webkit/Source/WebKit/chromium/tests/ |
D | TransparencyWinTest.cpp | 95 std::ios_base::showbase); in operator <<()
|