/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/ |
is_signed.pass.cpp | 12 // is_signed 19 static_assert( std::is_signed<T>::value, ""); 20 static_assert( std::is_signed<const T>::value, ""); 21 static_assert( std::is_signed<volatile T>::value, ""); 22 static_assert( std::is_signed<const volatile T>::value, ""); 28 static_assert(!std::is_signed<T>::value, ""); 29 static_assert(!std::is_signed<const T>::value, ""); 30 static_assert(!std::is_signed<volatile T>::value, ""); 31 static_assert(!std::is_signed<const volatile T>::value, "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/ |
is_signed.pass.cpp | 12 // is_signed 20 static_assert(std::numeric_limits<T>::is_signed == expected, "is_signed test 1"); 21 static_assert(std::numeric_limits<const T>::is_signed == expected, "is_signed test 2"); 22 static_assert(std::numeric_limits<volatile T>::is_signed == expected, "is_signed test 3"); 23 static_assert(std::numeric_limits<const volatile T>::is_signed == expected, "is_signed test 4");
|
min.pass.cpp | 25 assert(std::numeric_limits<T>::is_bounded || !std::numeric_limits<T>::is_signed); 27 assert(std::numeric_limits<const T>::is_bounded || !std::numeric_limits<const T>::is_signed); 29 assert(std::numeric_limits<volatile T>::is_bounded || !std::numeric_limits<volatile T>::is_signed); 31 assert(std::numeric_limits<const volatile T>::is_bounded || !std::numeric_limits<const volatile T>::is_signed);
|
digits.pass.cpp | 30 test<char, std::numeric_limits<char>::is_signed ? 7 : 8>(); 33 test<wchar_t, std::numeric_limits<wchar_t>::is_signed ? 31 : 32>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.ios.members/ |
streamoff.pass.cpp | 24 static_assert((std::is_signed<std::ios_base::streamoff>::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/stream.types/ |
streamoff.pass.cpp | 20 static_assert(std::is_signed<std::streamoff>::value, "");
|
streamsize.pass.cpp | 20 static_assert(std::is_signed<std::streamsize>::value, "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.types/ |
ptrdiff_t.pass.cpp | 23 static_assert(std::is_signed<std::ptrdiff_t>::value, 24 "std::is_signed<std::ptrdiff_t>::value");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
stdint_h.pass.cpp | 25 static_assert(std::is_signed<int8_t>::value, 26 "std::is_signed<int8_t>::value"); 30 static_assert(std::is_signed<int16_t>::value, 31 "std::is_signed<int16_t>::value"); 35 static_assert(std::is_signed<int32_t>::value, 36 "std::is_signed<int32_t>::value"); 40 static_assert(std::is_signed<int64_t>::value, 41 "std::is_signed<int64_t>::value"); 67 static_assert(std::is_signed<int_least8_t>::value, 68 "std::is_signed<int_least8_t>::value") [all...] |
stddef_h.pass.cpp | 33 static_assert(std::is_signed<ptrdiff_t>::value, 34 "std::is_signed<ptrdiff_t>::value");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/cstdint/cstdint.syn/ |
cstdint.pass.cpp | 25 static_assert(std::is_signed<std::int8_t>::value, 26 "std::is_signed<std::int8_t>::value"); 30 static_assert(std::is_signed<std::int16_t>::value, 31 "std::is_signed<std::int16_t>::value"); 35 static_assert(std::is_signed<std::int32_t>::value, 36 "std::is_signed<std::int32_t>::value"); 40 static_assert(std::is_signed<std::int64_t>::value, 41 "std::is_signed<std::int64_t>::value"); 67 static_assert(std::is_signed<std::int_least8_t>::value, 68 "std::is_signed<std::int_least8_t>::value") [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/ |
sign_mixture.hpp | 38 typedef mpl::bool_< ::std::numeric_limits<S>::is_signed > S_signed ; 39 typedef mpl::bool_< ::std::numeric_limits<T>::is_signed > T_signed ;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/ |
hours.pass.cpp | 23 static_assert(std::is_signed<Rep>::value, "");
|
microseconds.pass.cpp | 23 static_assert(std::is_signed<Rep>::value, "");
|
milliseconds.pass.cpp | 23 static_assert(std::is_signed<Rep>::value, "");
|
minutes.pass.cpp | 23 static_assert(std::is_signed<Rep>::value, "");
|
nanoseconds.pass.cpp | 23 static_assert(std::is_signed<Rep>::value, "");
|
seconds.pass.cpp | 23 static_assert(std::is_signed<Rep>::value, "");
|
/sdk/emulator/qtools/ |
decoder.h | 13 int64_t Decode(bool is_signed);
|
/external/stlport/test/unit/ |
limits_test.cpp | 70 bool test_integral_limits_base(const _Tp &, bool unknown_sign = true, bool is_signed = true) { 78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) || 79 (!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed)))); 82 CHECK_COND(valid_sign_info(lim::is_signed, _Tp())); 88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) { 89 if (!test_integral_limits_base(val, unknown_sign, is_signed)) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
limits_test.cpp | 70 bool test_integral_limits_base(const _Tp &, bool unknown_sign = true, bool is_signed = true) { 78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) || 79 (!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed)))); 82 CHECK_COND(valid_sign_info(lim::is_signed, _Tp())); 88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) { 89 if (!test_integral_limits_base(val, unknown_sign, is_signed)) [all...] |
/ndk/tests/device/test-stlport/unit/ |
limits_test.cpp | 70 bool test_integral_limits_base(const _Tp &, bool unknown_sign = true, bool is_signed = true) { 78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) || 79 (!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed)))); 82 CHECK_COND(valid_sign_info(lim::is_signed, _Tp())); 88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) { 89 if (!test_integral_limits_base(val, unknown_sign, is_signed)) [all...] |
/external/chromium_org/google_apis/gaia/ |
oauth_request_signer.cc | 274 bool is_signed = false; local 278 is_signed = SignHmacSha1(base, key, &signature); 281 is_signed = SignRsaSha1(base, key, &signature); 284 is_signed = SignPlaintext(base, key, &signature); 289 if (is_signed) 291 return is_signed; 404 bool is_signed = SignParameters(request_base_url, signature_method, local 407 if (is_signed) { 421 return is_signed; 437 bool is_signed = SignParameters(request_base_url, signature_method local [all...] |
/external/chromium_org/base/ |
safe_numerics.h | 114 DestLimits::is_signed, 115 SourceLimits::is_signed>::Test(
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
longobject.h | 85 If is_signed is 0/false, view the bytes as a non-negative integer. 86 If is_signed is 1/true, view the bytes as a 2's-complement integer, 94 int little_endian, int is_signed); 102 If is_signed is 0/false, it's an error if v < 0; else (v >= 0) n bytes 104 If is_signed is 1/true, bytes is filled with the 2's-complement 107 + is_signed is 0 and v < 0. TypeError is set in this case, and bytes 110 example, if is_signed is 0 and there are more digits in the v than 111 fit in n; or if is_signed is 1, v < 0, and n is just 1 bit shy of 117 int little_endian, int is_signed);
|