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

1 2 3

  /external/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
noshowpos.pass.cpp 26 std::showpos(ios);
29 assert(!(ios.flags() & std::ios::showpos));
showpos.pass.cpp 14 // ios_base& showpos(ios_base& str);
26 std::ios_base& r = std::showpos(ios);
28 assert(ios.flags() & std::ios::showpos);
Android.mk 55 test_name := input.output/iostreams.base/std.ios.manip/fmtflags.manip/showpos
56 test_src := showpos.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
noshowpos.pass.cpp 26 std::showpos(ios);
29 assert(!(ios.flags() & std::ios::showpos));
showpos.pass.cpp 14 // ios_base& showpos(ios_base& str);
26 std::ios_base& r = std::showpos(ios);
28 assert(ios.flags() & std::ios::showpos);
  /external/oprofile/libutil++/
string_manip.cpp 107 format_percent(double value, size_t int_width, size_t fract_width, bool showpos)
114 if (showpos)
115 os.setf(ios::showpos);
string_manip.h 60 * @param showpos - show + sign for positive values
70 size_t frac_width, bool showpos = false);
  /external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 25 // static const fmtflags showpos;
49 assert(std::ios_base::showpos);
67 & std::ios_base::showpos
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 25 // static const fmtflags showpos;
49 assert(std::ios_base::showpos);
67 & std::ios_base::showpos
  /ndk/tests/device/test-stlport/unit/
num_put_get_test.cpp 440 ostr << fixed << showpos << 1.23457e+17f;
450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f;
478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
486 ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f;
494 ostr << fixed << showpos << setprecision(8) << setw(30) << internal << setfill('0') << 0.12345678f;
502 ostr << fixed << showpos << setprecision(100) << 1.234567e+17;
513 ostr << fixed << showpos << setprecision(100) << 1.234567e+17l;
614 #define CHECK_COMPLETE(type, val, base, showbase, showpos, casing, width, adjust, expected) \
618 ostr << base << showbase << showpos << casing << setw(width) << adjust << tmp; \
674 CHECK_COMPLETE(short, 0, oct, showbase, showpos, nouppercase, 6, right, " 0"
    [all...]
  /external/stlport/test/unit/
num_put_get_test.cpp 440 ostr << fixed << showpos << 1.23457e+17f;
450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f;
478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
486 ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f;
494 ostr << fixed << showpos << setprecision(8) << setw(30) << internal << setfill('0') << 0.12345678f;
502 ostr << fixed << showpos << setprecision(100) << 1.234567e+17;
513 ostr << fixed << showpos << setprecision(100) << 1.234567e+17l;
614 #define CHECK_COMPLETE(type, val, base, showbase, showpos, casing, width, adjust, expected) \
618 ostr << base << showbase << showpos << casing << setw(width) << adjust << tmp; \
674 CHECK_COMPLETE(short, 0, oct, showbase, showpos, nouppercase, 6, right, " 0"
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
num_put_get_test.cpp 440 ostr << fixed << showpos << 1.23457e+17f;
450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f;
478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
486 ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f;
494 ostr << fixed << showpos << setprecision(8) << setw(30) << internal << setfill('0') << 0.12345678f;
502 ostr << fixed << showpos << setprecision(100) << 1.234567e+17;
513 ostr << fixed << showpos << setprecision(100) << 1.234567e+17l;
614 #define CHECK_COMPLETE(type, val, base, showbase, showpos, casing, width, adjust, expected) \
618 ostr << base << showbase << showpos << casing << setw(width) << adjust << tmp; \
674 CHECK_COMPLETE(short, 0, oct, showbase, showpos, nouppercase, 6, right, " 0"
    [all...]
  /external/stlport/stlport/stl/
_ios_base.h 78 _STLP_STATIC_CONSTANT(int, showpos = 0x0800);
285 inline ios_base& _STLP_CALL showpos(ios_base& __s) function
286 { __s.setf(ios_base::showpos); return __s;}
289 { __s.unsetf(ios_base::showpos); return __s;}
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 80 _STLP_STATIC_CONSTANT(int, showpos = 0x0800);
287 inline ios_base& _STLP_CALL showpos(ios_base& __s) function
288 { __s.setf(ios_base::showpos); return __s;}
291 { __s.unsetf(ios_base::showpos); return __s;}
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 78 _STLP_STATIC_CONSTANT(int, showpos = 0x0800);
285 inline ios_base& _STLP_CALL showpos(ios_base& __s) function
286 { __s.setf(ios_base::showpos); return __s;}
289 { __s.unsetf(ios_base::showpos); return __s;}
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 78 _STLP_STATIC_CONSTANT(int, showpos = 0x0800);
285 inline ios_base& _STLP_CALL showpos(ios_base& __s) function
286 { __s.setf(ios_base::showpos); return __s;}
289 { __s.unsetf(ios_base::showpos); return __s;}
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 78 _STLP_STATIC_CONSTANT(int, showpos = 0x0800);
285 inline ios_base& _STLP_CALL showpos(ios_base& __s) function
286 { __s.setf(ios_base::showpos); return __s;}
289 { __s.unsetf(ios_base::showpos); return __s;}
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 80 _STLP_STATIC_CONSTANT(int, showpos = 0x0800);
287 inline ios_base& _STLP_CALL showpos(ios_base& __s) function
288 { __s.setf(ios_base::showpos); return __s;}
291 { __s.unsetf(ios_base::showpos); return __s;}
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_ios_base.h 80 _STLP_STATIC_CONSTANT(int, showpos = 0x0800);
287 inline ios_base& _STLP_CALL showpos(ios_base& __s) function
288 { __s.setf(ios_base::showpos); return __s;}
291 { __s.unsetf(ios_base::showpos); return __s;}
  /external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
put_long_long.pass.cpp 88 showpos(ios);
271 showpos(ios);
284 showpos(ios);
297 showpos(ios);
312 showpos(ios);
put_unsigned_long_long.pass.cpp 88 showpos(ios);
271 showpos(ios);
284 showpos(ios);
297 showpos(ios);
312 showpos(ios);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
put_long_long.pass.cpp 88 showpos(ios);
271 showpos(ios);
284 showpos(ios);
297 showpos(ios);
312 showpos(ios);
put_unsigned_long_long.pass.cpp 88 showpos(ios);
271 showpos(ios);
284 showpos(ios);
297 showpos(ios);
312 showpos(ios);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
ios_base.h 249 * - showpos
299 static const fmtflags showpos = _S_showpos; member in class:ios_base
843 /// Calls base.setf(ios_base::showpos).
845 showpos(ios_base& __base) function
847 __base.setf(ios_base::showpos);
851 /// Calls base.unsetf(ios_base::showpos).
855 __base.unsetf(ios_base::showpos);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
ios_base.h 247 * - showpos
297 static const fmtflags showpos = _S_showpos; member in class:ios_base
841 /// Calls base.setf(ios_base::showpos).
843 showpos(ios_base& __base) function
845 __base.setf(ios_base::showpos);
849 /// Calls base.unsetf(ios_base::showpos).
853 __base.unsetf(ios_base::showpos);

Completed in 270 milliseconds

1 2 3