Searched refs:oct (Results 1 – 8 of 8) sorted by relevance
/ndk/tests/device/test-stlport/unit/ |
D | num_put_get_test.cpp | 629 CHECK(short, 0, oct, "0") in num_put_integer() 630 CHECK(short, 1, oct, "1") in num_put_integer() 631 CHECK(short, 12345, oct, "30071") in num_put_integer() 633 CHECK(short, -1, oct, "177777") in num_put_integer() 634 CHECK(short, -12345, oct, "147707") in num_put_integer() 637 CHECK(unsigned short, 0, oct, "0") in num_put_integer() 638 CHECK(unsigned short, 12345, oct, "30071") in num_put_integer() 640 CHECK(int, 0, oct, "0") in num_put_integer() 641 CHECK(int, 12345678, oct, "57060516") in num_put_integer() 643 CHECK(int, -1, oct, "37777777777") in num_put_integer() [all …]
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | num_put_get_test.cpp | 629 CHECK(short, 0, oct, "0") in num_put_integer() 630 CHECK(short, 1, oct, "1") in num_put_integer() 631 CHECK(short, 12345, oct, "30071") in num_put_integer() 633 CHECK(short, -1, oct, "177777") in num_put_integer() 634 CHECK(short, -12345, oct, "147707") in num_put_integer() 637 CHECK(unsigned short, 0, oct, "0") in num_put_integer() 638 CHECK(unsigned short, 12345, oct, "30071") in num_put_integer() 640 CHECK(int, 0, oct, "0") in num_put_integer() 641 CHECK(int, 12345678, oct, "57060516") in num_put_integer() 643 CHECK(int, -1, oct, "37777777777") in num_put_integer() [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ios_base.h | 72 _STLP_STATIC_CONSTANT(int, oct = 0x0020); 83 _STLP_STATIC_CONSTANT(int, basefield = dec | hex | oct); 327 inline ios_base& _STLP_CALL oct(ios_base& __s) in oct() function 328 { __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/stlport/src/ |
D | ios.cpp | 49 const ios_base::fmtflags ios_base::oct; member in ios_base
|