Home
last modified time | relevance | path

Searched refs:dec (Results 1 – 25 of 47) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
Dsetf_fmtflags_mask.pass.cpp32 assert(t.flags() == (test::skipws | test::dec)); in main()
33 test::fmtflags f = t.setf(test::hex | test::right, test::dec | test::right); in main()
34 assert(f == (test::skipws | test::dec)); in main()
Dsetf_fmtflags.pass.cpp32 assert(t.flags() == (test::skipws | test::dec)); in main()
34 assert(f == (test::skipws | test::dec)); in main()
35 assert(t.flags() == (test::skipws | test::dec | test::hex | test::right)); in main()
Dunsetf_mask.pass.cpp32 assert(t.flags() == (test::skipws | test::dec)); in main()
33 t.unsetf(test::dec | test::right); in main()
Dflags_fmtflags.pass.cpp32 assert(t.flags() == (test::skipws | test::dec)); in main()
34 assert(f == (test::skipws | test::dec)); in main()
Dflags.pass.cpp32 assert(t.flags() == (test::skipws | test::dec)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/
Ddec.pass.cpp26 std::ios_base& r = std::dec(ios); in main()
28 assert(ios.flags() & std::ios::dec); in main()
/ndk/tests/device/test-gnustl-full/unit/
Dnum_put_get_test.cpp675 CHECK(short, 0, dec, "0") in num_put_integer()
676 CHECK(short, -1, dec, "-1") in num_put_integer()
677 CHECK(short, 12345, dec, "12345") in num_put_integer()
678 CHECK(short, -12345, dec, "-12345") in num_put_integer()
680 CHECK(unsigned short, 0, dec, "0") in num_put_integer()
681 CHECK(unsigned short, 12345, dec, "12345") in num_put_integer()
683 CHECK(int, 0, dec, "0") in num_put_integer()
684 CHECK(int, -1, dec, "-1") in num_put_integer()
685 CHECK(int, 12345678, dec, "12345678") in num_put_integer()
686 CHECK(int, -12345678, dec, "-12345678") in num_put_integer()
[all …]
/ndk/tests/device/test-stlport/unit/
Dnum_put_get_test.cpp675 CHECK(short, 0, dec, "0") in num_put_integer()
676 CHECK(short, -1, dec, "-1") in num_put_integer()
677 CHECK(short, 12345, dec, "12345") in num_put_integer()
678 CHECK(short, -12345, dec, "-12345") in num_put_integer()
680 CHECK(unsigned short, 0, dec, "0") in num_put_integer()
681 CHECK(unsigned short, 12345, dec, "12345") in num_put_integer()
683 CHECK(int, 0, dec, "0") in num_put_integer()
684 CHECK(int, -1, dec, "-1") in num_put_integer()
685 CHECK(int, 12345678, dec, "12345678") in num_put_integer()
686 CHECK(int, -12345678, dec, "-12345678") in num_put_integer()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.assign/
Dmove_assign.pass.cpp56 assert(os1.flags() == (os1.skipws | os1.dec)); in main()
64 assert(os2.flags() == (os2.skipws | os2.dec)); in main()
79 assert(os1.flags() == (os1.skipws | os1.dec)); in main()
87 assert(os2.flags() == (os2.skipws | os2.dec)); in main()
Dmember_swap.pass.cpp50 assert(os1.flags() == (os1.skipws | os1.dec)); in main()
58 assert(os2.flags() == (os2.skipws | os2.dec)); in main()
73 assert(os1.flags() == (os1.skipws | os1.dec)); in main()
81 assert(os2.flags() == (os2.skipws | os2.dec)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.assign/
Dmove_assign.pass.cpp56 assert(is1.flags() == (is1.skipws | is1.dec)); in main()
64 assert(is2.flags() == (is2.skipws | is2.dec)); in main()
79 assert(is1.flags() == (is1.skipws | is1.dec)); in main()
87 assert(is2.flags() == (is2.skipws | is2.dec)); in main()
Dmember_swap.pass.cpp50 assert(is1.flags() == (is1.skipws | is1.dec)); in main()
58 assert(is2.flags() == (is2.skipws | is2.dec)); in main()
73 assert(is1.flags() == (is1.skipws | is1.dec)); in main()
81 assert(is2.flags() == (is2.skipws | is2.dec)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
Dmember_swap.pass.cpp50 assert(is1.flags() == (is1.skipws | is1.dec)); in main()
58 assert(is2.flags() == (is2.skipws | is2.dec)); in main()
73 assert(is1.flags() == (is1.skipws | is1.dec)); in main()
81 assert(is2.flags() == (is2.skipws | is2.dec)); in main()
Dmove_assign.pass.cpp56 assert(is1.flags() == (is1.skipws | is1.dec)); in main()
64 assert(is2.flags() == (is2.skipws | is2.dec)); in main()
79 assert(is1.flags() == (is1.skipws | is1.dec)); in main()
87 assert(is2.flags() == (is2.skipws | is2.dec)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/std.manip/
Dsetbase.pass.cpp32 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec); in main()
44 assert((os.flags() & std::ios_base::basefield) == std::ios_base::dec); in main()
56 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec); in main()
68 assert((os.flags() & std::ios_base::basefield) == std::ios_base::dec); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
Dfmtflags.pass.cpp39 assert(std::ios_base::dec); in main()
57 & std::ios_base::dec in main()
76 assert(std::ios_base::basefield == (std::ios_base::dec in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
Dstreambuf.pass.cpp37 assert(is.flags() == (is.skipws | is.dec)); in main()
50 assert(is.flags() == (is.skipws | is.dec)); in main()
Dmove.pass.cpp57 assert(is.flags() == (is.skipws | is.dec)); in main()
73 assert(is.flags() == (is.skipws | is.dec)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
Dstreambuf.pass.cpp37 assert(os.flags() == (os.skipws | os.dec)); in main()
49 assert(os.flags() == (os.skipws | os.dec)); in main()
Dmove.pass.cpp55 assert(os.flags() == (os.skipws | os.dec)); in main()
69 assert(os.flags() == (os.skipws | os.dec)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/
Dstreambuf.pass.cpp37 assert(is.flags() == (is.skipws | is.dec)); in main()
50 assert(is.flags() == (is.skipws | is.dec)); in main()
Dmove.pass.cpp57 assert(is.flags() == (is.skipws | is.dec)); in main()
73 assert(is.flags() == (is.skipws | is.dec)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.cons/
Dctor_streambuf.pass.cpp29 assert(ios.flags() == (std::ios::skipws | std::ios::dec)); in main()
42 assert(ios.flags() == (std::ios::skipws | std::ios::dec)); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ios_base.h72 _STLP_STATIC_CONSTANT(int, dec = 0x0008);
85 _STLP_STATIC_CONSTANT(int, basefield = dec | hex | oct);
323 inline ios_base& _STLP_CALL dec(ios_base& __s) in dec() function
324 { __s.setf(ios_base::dec, ios_base::basefield); return __s; } in dec()
/ndk/sources/cxx-stl/stlport/stlport/using/
Dios32 using _STLP_NEW_IO_NAMESPACE::dec;

12