Searched refs:WCHAR_MIN (Results 1 – 25 of 28) sorted by relevance
12
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cwchar.h | 117 # ifndef WCHAR_MIN 118 # define WCHAR_MIN 0 macro 129 # undef WCHAR_MIN 130 # define WCHAR_MIN 0 macro 144 _STLP_STATIC_ASSERT((WCHAR_MIN < 0)) 145 # undef WCHAR_MIN 146 # define WCHAR_MIN 0 macro 157 # undef WCHAR_MIN 158 # define WCHAR_MIN 0 macro
|
D | _limits.h | 217 : public _STLP_PRIV _Integer_limits<wchar_t, WCHAR_MIN, WCHAR_MAX, -1, true>
|
/ndk/tests/device/test-stlport/unit/ |
D | macro_checks.cpp | 73 #if !defined (WCHAR_MIN) 74 # error Missing WCHAR_MIN definition. 81 #if !(WCHAR_MIN < WCHAR_MAX) 82 # error Weird WCHAR_MIN or WCHAR_MAX macro value.
|
D | limits_test.cpp | 281 # if (defined (_STLP_HAS_WCHAR_T) && !defined (_STLP_WCHAR_T_IS_USHORT)) && WCHAR_MIN != 0 && !def… in test()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | macro_checks.cpp | 73 #if !defined (WCHAR_MIN) 74 # error Missing WCHAR_MIN definition. 81 #if !(WCHAR_MIN < WCHAR_MAX) 82 # error Weird WCHAR_MIN or WCHAR_MAX macro value.
|
/ndk/tests/build/wchar_t-size/jni/ |
D | test_default.c | 18 STATIC_ASSERT(WCHAR_MIN == 0U); 21 STATIC_ASSERT(WCHAR_MIN == -1-2147483647);
|
D | test_8bit_cplusplus.cpp | 33 STATIC_ASSERT(WCHAR_MIN == 0); 36 STATIC_ASSERT(WCHAR_MIN == 0x80000000);
|
D | test_always_signed.c | 19 STATIC_ASSERT(WCHAR_MIN == -1-2147483647);
|
D | test_8bit_cplusplus_stdc_limit_macros.cpp | 33 STATIC_ASSERT(WCHAR_MIN == 0x80000000);
|
D | test_8bit.c | 29 STATIC_ASSERT(WCHAR_MIN == 0x80000000);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
D | is_unsigned.hpp | 112 #if defined(WCHAR_MIN) && (WCHAR_MIN == 0) && !defined(BOOST_NO_INTRINSIC_WCHAR_T)
|
D | is_signed.hpp | 117 #if defined(WCHAR_MIN) && (WCHAR_MIN != 0)
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | integer_traits.hpp | 104 #if defined(WCHAR_MIN) && defined(WCHAR_MAX) && !defined(__APPLE__) 105 public detail::integer_traits_base<wchar_t, WCHAR_MIN, WCHAR_MAX> 128 #error No WCHAR_MIN and WCHAR_MAX present, please adjust integer_traits<> for your compiler.
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/ |
D | lowest.pass.cpp | 40 test<wchar_t>(WCHAR_MIN); in main()
|
D | min.pass.cpp | 40 test<wchar_t>(WCHAR_MIN); in main()
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | stdint.in.h | 482 #if ! (defined WCHAR_MIN && defined WCHAR_MAX) 487 #undef WCHAR_MIN 489 #define WCHAR_MIN \ macro
|
/ndk/sources/android/support/include/ |
D | wchar.h | 90 #define WCHAR_MIN L'\0' 92 #define WCHAR_MIN (-(WCHAR_MAX) - 1)
|
/ndk/sources/android/support/tests/ |
D | wchar_unittest.cc | 31 ASSERT_EQ(wchar_t(0), WCHAR_MIN); in TEST() 35 ASSERT_EQ(wchar_t(0x80000000), WCHAR_MIN); in TEST()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | wchar_h.pass.cpp | 23 #ifndef WCHAR_MIN 24 #error WCHAR_MIN not defined
|
D | stdint_h.pass.cpp | 240 assert(WCHAR_MIN == std::numeric_limits<wchar_t>::min()); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdint | 81 WCHAR_MIN
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/ |
D | cwchar.pass.cpp | 23 #ifndef WCHAR_MIN 24 #error WCHAR_MIN not defined
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | stdint.m4 | 67 /* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in <wchar.h>. */ 68 #if !(defined WCHAR_MIN && defined WCHAR_MAX) 69 #error "WCHAR_MIN, WCHAR_MAX not defined in <stdint.h>" 163 WCHAR_MIN == TYPE_MINIMUM (wchar_t)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/ |
D | cinttypes.pass.cpp | 203 #ifndef WCHAR_MIN 204 #error WCHAR_MIN not defined
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/cstdint/cstdint.syn/ |
D | cstdint.pass.cpp | 240 assert(WCHAR_MIN == std::numeric_limits<wchar_t>::min()); in main()
|
12