Home
last modified time | relevance | path

Searched refs:showpos (Results 1 – 16 of 16) sorted by relevance

/external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
Dshowpos.pass.cpp26 std::ios_base& r = std::showpos(ios); in main()
28 assert(ios.flags() & std::ios::showpos); in main()
Dnoshowpos.pass.cpp26 std::showpos(ios); in main()
29 assert(!(ios.flags() & std::ios::showpos)); in main()
/external/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
Dfmtflags.pass.cpp49 assert(std::ios_base::showpos); in main()
67 & std::ios_base::showpos in main()
/external/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
Dput_long.pass.cpp88 showpos(ios); in main()
271 showpos(ios); in main()
284 showpos(ios); in main()
297 showpos(ios); in main()
312 showpos(ios); in main()
Dput_long_long.pass.cpp88 showpos(ios); in main()
271 showpos(ios); in main()
284 showpos(ios); in main()
297 showpos(ios); in main()
312 showpos(ios); in main()
Dput_unsigned_long.pass.cpp88 showpos(ios); in main()
271 showpos(ios); in main()
284 showpos(ios); in main()
297 showpos(ios); in main()
312 showpos(ios); in main()
Dput_unsigned_long_long.pass.cpp88 showpos(ios); in main()
271 showpos(ios); in main()
284 showpos(ios); in main()
297 showpos(ios); in main()
312 showpos(ios); in main()
Dput_double.pass.cpp209 showpos(ios); in test1()
502 showpos(ios); in test1()
798 showpos(ios); in test1()
1091 showpos(ios); in test1()
1387 showpos(ios); in test1()
1680 showpos(ios); in test1()
1976 showpos(ios); in test1()
2269 showpos(ios); in test1()
2565 showpos(ios); in test1()
2858 showpos(ios); in test1()
[all …]
Dput_long_double.pass.cpp214 showpos(ios); in test1()
507 showpos(ios); in test1()
803 showpos(ios); in test1()
1096 showpos(ios); in test1()
1392 showpos(ios); in test1()
1685 showpos(ios); in test1()
1981 showpos(ios); in test1()
2274 showpos(ios); in test1()
2570 showpos(ios); in test1()
2863 showpos(ios); in test1()
[all …]
/external/bcc/src/cc/vendor/
Dtinyformat.hpp235 if (static_cast<int>(value) == 0 && out.flags() & std::ios::showpos) in invoke()
598 std::ios::showpoint | std::ios::showpos | std::ios::uppercase); in streamStateFromFormat()
627 if(!(out.flags() & std::ios::showpos)) in streamStateFromFormat()
631 out.setf(std::ios::showpos); in streamStateFromFormat()
804 tmpStream.setf(std::ios::showpos); in formatImpl()
/external/libcxx/include/
Dios43 static constexpr fmtflags showpos;
174 ios_base& showpos (ios_base& str);
248 static const fmtflags showpos = 0x0800;
877 showpos(ios_base& __str)
879 __str.setf(ios_base::showpos);
887 __str.unsetf(ios_base::showpos);
/external/v8/src/
Deh-frame.cc496 << " saved at base" << std::showpos in DumpDwarfDirectives()
515 stream << " saved at base" << std::showpos in DumpDwarfDirectives()
/external/libcxx/src/
Dios.cpp105 const ios_base::fmtflags ios_base::showpos; member in ios_base
Dlocale.cpp4423 if (__flags & ios_base::showpos) in __format_int()
4449 if (__flags & ios_base::showpos) in __format_float()
/external/protobuf/src/google/protobuf/stubs/
Dint128_unittest.cc495 {uint128(1), std::ios::dec | std::ios::showpos, 0, '_', "1"}, in TEST()
/external/eigen/unsupported/test/mpreal/
Dmpreal.h1878 format << ((flags & std::ios::showpos) ? "%+" : "%");