Home
last modified time | relevance | path

Searched refs:showpoint (Results 1 – 12 of 12) sorted by relevance

/external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
Dshowpoint.pass.cpp26 std::ios_base& r = std::showpoint(ios); in main()
28 assert(ios.flags() & std::ios::showpoint); in main()
Dnoshowpoint.pass.cpp26 std::showpoint(ios); in main()
29 assert(!(ios.flags() & std::ios::showpoint)); in main()
/external/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
Dfmtflags.pass.cpp48 assert(std::ios_base::showpoint); in main()
66 & std::ios_base::showpoint in main()
/external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
Dmove.pass.cpp86 ios2.flags(std::ios::showpoint | std::ios::uppercase); in main()
111 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase)); in main()
Dswap.pass.cpp98 ios2.flags(std::ios::showpoint | std::ios::uppercase); in main()
123 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase)); in main()
Dcopyfmt.pass.cpp138 ios2.flags(std::ios::showpoint | std::ios::uppercase); in main()
173 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase)); in main()
/external/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
Dput_double.pass.cpp137 showpoint(ios); in test1()
282 showpoint(ios); in test1()
430 showpoint(ios); in test1()
575 showpoint(ios); in test1()
726 showpoint(ios); in test1()
871 showpoint(ios); in test1()
1019 showpoint(ios); in test1()
1164 showpoint(ios); in test1()
1315 showpoint(ios); in test1()
1460 showpoint(ios); in test1()
[all …]
Dput_long_double.pass.cpp142 showpoint(ios); in test1()
287 showpoint(ios); in test1()
435 showpoint(ios); in test1()
580 showpoint(ios); in test1()
731 showpoint(ios); in test1()
876 showpoint(ios); in test1()
1024 showpoint(ios); in test1()
1169 showpoint(ios); in test1()
1320 showpoint(ios); in test1()
1465 showpoint(ios); in test1()
[all …]
/external/swiftshader/src/OpenGL/compiler/
DInfoSink.h84 stream << std::showpoint << std::fixed << f;
/external/libcxx/include/
Dios42 static constexpr fmtflags showpoint;
172 ios_base& showpoint (ios_base& str);
247 static const fmtflags showpoint = 0x0400;
861 showpoint(ios_base& __str)
863 __str.setf(ios_base::showpoint);
871 __str.unsetf(ios_base::showpoint);
/external/libcxx/src/
Dios.cpp104 const ios_base::fmtflags ios_base::showpoint; member in ios_base
Dlocale.cpp4450 if (__flags & ios_base::showpoint) in __format_float()