/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/std.manip/ |
D | setiosflags.pass.cpp | 29 assert(!(is.flags() & std::ios_base::oct)); in main() 30 is >> std::setiosflags(std::ios_base::oct); in main() 31 assert(is.flags() & std::ios_base::oct); in main() 36 assert(!(os.flags() & std::ios_base::oct)); in main() 37 os << std::setiosflags(std::ios_base::oct); in main() 38 assert(os.flags() & std::ios_base::oct); in main() 43 assert(!(is.flags() & std::ios_base::oct)); in main() 44 is >> std::setiosflags(std::ios_base::oct); in main() 45 assert(is.flags() & std::ios_base::oct); in main() 50 assert(!(os.flags() & std::ios_base::oct)); in main() [all …]
|
D | setbase.pass.cpp | 30 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct); in main() 42 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct); in main() 54 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct); in main() 66 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct); in main()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | num_put_get_test.cpp | 621 CHECK(short, 0, oct, "0") in num_put_integer() 622 CHECK(short, 1, oct, "1") in num_put_integer() 623 CHECK(short, 12345, oct, "30071") in num_put_integer() 625 CHECK(short, -1, oct, "177777") in num_put_integer() 626 CHECK(short, -12345, oct, "147707") in num_put_integer() 629 CHECK(unsigned short, 0, oct, "0") in num_put_integer() 630 CHECK(unsigned short, 12345, oct, "30071") in num_put_integer() 632 CHECK(int, 0, oct, "0") in num_put_integer() 633 CHECK(int, 12345678, oct, "57060516") in num_put_integer() 635 CHECK(int, -1, oct, "37777777777") in num_put_integer() [all …]
|
/ndk/tests/device/test-stlport/unit/ |
D | num_put_get_test.cpp | 621 CHECK(short, 0, oct, "0") in num_put_integer() 622 CHECK(short, 1, oct, "1") in num_put_integer() 623 CHECK(short, 12345, oct, "30071") in num_put_integer() 625 CHECK(short, -1, oct, "177777") in num_put_integer() 626 CHECK(short, -12345, oct, "147707") in num_put_integer() 629 CHECK(unsigned short, 0, oct, "0") in num_put_integer() 630 CHECK(unsigned short, 12345, oct, "30071") in num_put_integer() 632 CHECK(int, 0, oct, "0") in num_put_integer() 633 CHECK(int, 12345678, oct, "57060516") in num_put_integer() 635 CHECK(int, -1, oct, "37777777777") in num_put_integer() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/ |
D | oct.pass.cpp | 26 std::ios_base& r = std::oct(ios); in main() 28 assert(ios.flags() & std::ios::oct); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/ |
D | fmtflags.pass.cpp | 44 assert(std::ios_base::oct); in main() 62 & std::ios_base::oct in main() 77 | std::ios_base::oct in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/ |
D | put_unsigned_long_long.pass.cpp | 97 oct(ios); in main() 106 oct(ios); in main() 170 oct(ios); in main() 180 oct(ios); in main() 191 oct(ios); in main() 204 oct(ios); in main() 217 oct(ios); in main()
|
D | put_long_long.pass.cpp | 97 oct(ios); in main() 106 oct(ios); in main() 170 oct(ios); in main() 180 oct(ios); in main() 191 oct(ios); in main() 204 oct(ios); in main() 217 oct(ios); in main()
|
D | put_unsigned_long.pass.cpp | 103 oct(ios); in main() 113 oct(ios); in main() 183 oct(ios); in main() 194 oct(ios); in main() 206 oct(ios); in main() 220 oct(ios); in main() 234 oct(ios); in main()
|
D | put_long.pass.cpp | 103 oct(ios); in main() 113 oct(ios); in main() 183 oct(ios); in main() 194 oct(ios); in main() 206 oct(ios); in main() 220 oct(ios); in main() 234 oct(ios); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ios_base.h | 74 _STLP_STATIC_CONSTANT(int, oct = 0x0020); 85 _STLP_STATIC_CONSTANT(int, basefield = dec | hex | oct); 329 inline ios_base& _STLP_CALL oct(ios_base& __s) in oct() function 330 { __s.setf(ios_base::oct, ios_base::basefield); return __s; } in oct()
|
D | _num_put.c | 214 case ios_base::oct: __basechars = 1; break; in __put_integer() 245 case ios_base::oct: __basechars = 1; break; in __put_integer() 309 if ((__flags & ios_base::showpos) && ((__flags & (ios_base::oct | ios_base::hex)) == 0)) in __write_integer_backward() 315 case ios_base::oct: in __write_integer_backward()
|
D | _iomanip.h | 111 ios_base::fmtflags __base = __n == 8 ? ios_base::oct : in setbase()
|
D | _num_get.c | 77 case ios_base::oct: in __get_base_or_zero()
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | ios | 34 using _STLP_NEW_IO_NAMESPACE::oct;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | ios | 38 static constexpr fmtflags oct; 191 ios_base& oct (ios_base& str); 243 static const fmtflags oct = 0x0040; 253 static const fmtflags basefield = dec | oct | hex; 956 oct(ios_base& __str) 958 __str.setf(ios_base::oct, ios_base::basefield);
|
D | iomanip | 144 __is.setf(__x.__base_ == 8 ? ios_base::oct : 157 __os.setf(__x.__base_ == 8 ? ios_base::oct :
|
D | ostream | 425 __flags == ios_base::oct || __flags == ios_base::hex ? 481 __flags == ios_base::oct || __flags == ios_base::hex ?
|
/ndk/sources/cxx-stl/stlport/src/ |
D | ios.cpp | 51 const ios_base::fmtflags ios_base::oct; member in ios_base
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | ios.cpp | 98 const ios_base::fmtflags ios_base::oct; member in ios_base
|
D | locale.cpp | 4390 if (__basefield == ios_base::oct) in __get_base() 4441 if ((__flags & ios_base::basefield) == ios_base::oct) in __format_int()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/ |
D | get_long.pass.cpp | 77 oct(ios); in main()
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 1708 $(call gen-test, input.output/iostreams.base/std.ios.manip/basefield.manip/oct)
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 1717 $(call gen-test, input.output/iostreams.base/std.ios.manip/basefield.manip/oct)
|