Home
last modified time | relevance | path

Searched refs:uppercase (Results 1 – 25 of 37) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
Dios_base.pass.cpp57 assert(!(os.flags() & std::ios_base::uppercase)); in main()
58 os << std::uppercase; in main()
59 assert( (os.flags() & std::ios_base::uppercase)); in main()
Dbasic_ios.pass.cpp57 std::uppercase(os); in f()
66 assert(!(os.flags() & std::ios_base::uppercase)); in main()
68 assert( (os.flags() & std::ios_base::uppercase)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
Duppercase.pass.cpp26 std::ios_base& r = std::uppercase(ios); in main()
28 assert(ios.flags() & std::ios::uppercase); in main()
Dnouppercase.pass.cpp26 std::uppercase(ios); in main()
29 assert(!(ios.flags() & std::ios::uppercase)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
Dfmtflags.pass.cpp52 assert(std::ios_base::uppercase); in main()
70 & std::ios_base::uppercase) == 0 in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ios_base.h83 _STLP_STATIC_CONSTANT(int, uppercase = 0x4000);
299 inline ios_base& _STLP_CALL uppercase(ios_base& __s) in uppercase() function
300 { __s.setf(ios_base::uppercase); return __s;} in uppercase()
303 { __s.unsetf(ios_base::uppercase); return __s;} in nouppercase()
D_num_put.c332 const char* __table_ptr = (__flags & ios_base::uppercase) ? in __write_integer_backward()
487 const char* __table_ptr = (__save_flags & ios_base::uppercase) ? in do_put()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
Dmove.pass.cpp84 ios2.flags(std::ios::showpoint | std::ios::uppercase); in main()
109 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase)); in main()
Dcopyfmt.pass.cpp133 ios2.flags(std::ios::showpoint | std::ios::uppercase); in main()
167 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase)); in main()
Dswap.pass.cpp95 ios2.flags(std::ios::showpoint | std::ios::uppercase); in main()
120 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase)); in main()
/ndk/sources/cxx-stl/stlport/stlport/using/
Dios23 using _STLP_NEW_IO_NAMESPACE::uppercase;
/ndk/sources/host-tools/make-3.81/
Dacinclude.m497 dnl Make an uppercase version of a variable
98 dnl $1=uppercase($2)
/ndk/sources/cxx-stl/stlport/src/
Dnum_put_float.cpp543 *--suffix = flags & ios_base::uppercase ? 'E' : 'e'; in __format_float_scientific()
647 buf += inf_or_nan[flags & ios_base::uppercase ? 1 : 0]; in __format_nan_or_inf()
729 fmtbuf[i++] = (flags & ios_base::uppercase) ? 'E' : 'e'; in __fill_fmtbuf()
735 fmtbuf[i++] = (flags & ios_base::uppercase) ? 'F' : 'f'; in __fill_fmtbuf()
739 fmtbuf[i++] = (flags & ios_base::uppercase) ? 'G' : 'g'; in __fill_fmtbuf()
Dios.cpp60 const ios_base::fmtflags ios_base::uppercase; member in ios_base
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dios46 static constexpr fmtflags uppercase;
178 ios_base& uppercase (ios_base& str);
251 static const fmtflags uppercase = 0x4000;
884 uppercase(ios_base& __str)
886 __str.setf(ios_base::uppercase);
894 __str.unsetf(ios_base::uppercase);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
Dput_long_long.pass.cpp137 uppercase(ios); in main()
149 uppercase(ios); in main()
Dput_unsigned_long_long.pass.cpp137 uppercase(ios); in main()
149 uppercase(ios); in main()
Dput_long.pass.cpp147 uppercase(ios); in main()
160 uppercase(ios); in main()
Dput_unsigned_long.pass.cpp147 uppercase(ios); in main()
160 uppercase(ios); in main()
/ndk/tests/device/test-gnustl-full/unit/
Dnum_facets_test.cpp107 fostr.setf(ios_base::uppercase | ios_base::showpos); in _num_put_get()
Dnum_put_get_test.cpp774 CHECK_COMPLETE(short, 1, hex, showbase, noshowpos, uppercase, 6, left, "0X1 ") in num_put_integer()
775 CHECK_COMPLETE(short, 1, hex, showbase, showpos, uppercase, 6, internal, "0X 1") in num_put_integer()
/ndk/tests/device/test-stlport/unit/
Dnum_facets_test.cpp107 fostr.setf(ios_base::uppercase | ios_base::showpos); in _num_put_get()
Dnum_put_get_test.cpp774 CHECK_COMPLETE(short, 1, hex, showbase, noshowpos, uppercase, 6, left, "0X1 ") in num_put_integer()
775 CHECK_COMPLETE(short, 1, hex, showbase, showpos, uppercase, 6, internal, "0X 1") in num_put_integer()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dexception_safety.ipp445 formatter << "Allocated memory block 0x" << std::uppercase << it->m_alloc.ptr
461 formatter << std::hex << std::uppercase << c << ' ';
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dios.cpp106 const ios_base::fmtflags ios_base::uppercase; member in ios_base

12