HomeSort by relevance Sort by last modified time
    Searched full:static_assert (Results 701 - 725 of 918) sorted by null

<<21222324252627282930>>

  /external/clang/test/SemaTemplate/
constexpr-instantiate.cpp 29 static_assert(w == 1, "");
32 static_assert(sizeof(arr) == 'x', "");
76 static_assert(n == 5, "");
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/cmplx.over/
pow.pass.cpp 43 static_assert((std::is_same<decltype(std::pow(x, y)), std::complex<V> >::value), "");
52 static_assert((std::is_same<decltype(std::pow(x, y)), std::complex<V> >::value), "");
61 static_assert((std::is_same<decltype(std::pow(x, y)), std::complex<V> >::value), "");
  /external/clang/test/SemaCXX/
enum-scoped.cpp 14 static_assert(sizeof(E1) == sizeof(int), "bad size");
15 static_assert(sizeof(E1::Val1) == sizeof(int), "bad size");
16 static_assert(sizeof(E2) == sizeof(int), "bad size");
17 static_assert(sizeof(E2::Val1) == sizeof(int), "bad size");
29 static_assert(sizeof(E3) == 1, "bad size");
constexpr-backtrace-limit.cpp 34 static_assert(recurse(5), "");
cxx11-gnu-attrs.cpp 55 static_assert(sizeof(packed) == sizeof(char) + sizeof(int), "not packed");
  /external/v8/src/ia32/
code-stubs-ia32.cc 308 STATIC_ASSERT(kPointerSize == 4);
309 STATIC_ASSERT(kSmiTagSize == 1);
310 STATIC_ASSERT(kSmiTag == 0);
384 STATIC_ASSERT(kPointerSize == 4);
385 STATIC_ASSERT(kSmiTagSize == 1);
386 STATIC_ASSERT(kSmiTag == 0);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/c.files/
cinttypes.pass.cpp 923 static_assert((std::is_same<decltype(std::imaxabs(i)), std::intmax_t>::value), "");
924 static_assert((std::is_same<decltype(std::imaxdiv(i, i)), std::imaxdiv_t>::value), "");
925 static_assert((std::is_same<decltype(std::strtoimax("", (char**)0, 0)), std::intmax_t>::value), "");
926 static_assert((std::is_same<decltype(std::strtoumax("", (char**)0, 0)), std::uintmax_t>::value), "");
927 static_assert((std::is_same<decltype(std::wcstoimax(L"", (wchar_t**)0, 0)), std::intmax_t>::value), "");
928 static_assert((std::is_same<decltype(std::wcstoumax(L"", (wchar_t**)0, 0)), std::uintmax_t>::value), "");
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
chrono 202 static_assert(!__is_duration<_Rep>::value, "rep cannot be a duration");
203 static_assert(__is_ratio<_Period>::value,
205 static_assert(_Period::num > 0, "period must be positive");
217 static_assert(is_convertible<_Rep2,rep>::value
227 static_assert(treat_as_floating_point<rep>::value == true
637 static_assert(
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
chrono 202 static_assert(!__is_duration<_Rep>::value, "rep cannot be a duration");
203 static_assert(__is_ratio<_Period>::value,
205 static_assert(_Period::num > 0, "period must be positive");
217 static_assert(is_convertible<_Rep2,rep>::value
227 static_assert(treat_as_floating_point<rep>::value == true
637 static_assert(
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
chrono 202 static_assert(!__is_duration<_Rep>::value, "rep cannot be a duration");
203 static_assert(__is_ratio<_Period>::value,
205 static_assert(_Period::num > 0, "period must be positive");
217 static_assert(is_convertible<_Rep2,rep>::value
227 static_assert(treat_as_floating_point<rep>::value == true
637 static_assert(
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
chrono 202 static_assert(!__is_duration<_Rep>::value, "rep cannot be a duration");
203 static_assert(__is_ratio<_Period>::value,
205 static_assert(_Period::num > 0, "period must be positive");
217 static_assert(is_convertible<_Rep2,rep>::value
227 static_assert(treat_as_floating_point<rep>::value == true
637 static_assert(
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
chrono 202 static_assert(!__is_duration<_Rep>::value, "rep cannot be a duration");
203 static_assert(__is_ratio<_Period>::value,
205 static_assert(_Period::num > 0, "period must be positive");
217 static_assert(is_convertible<_Rep2,rep>::value
227 static_assert(treat_as_floating_point<rep>::value == true
637 static_assert(
  /external/bison/lib/
verify.h 28 Define _GL_HAVE_STATIC_ASSERT to 1 if static_assert works as per C++11.
38 first G++ release that supports static_assert. */
209 # if !defined _GL_HAVE_STATIC_ASSERT && !defined static_assert
210 # define static_assert _Static_assert /* C11 requires this #define. */ macro
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p4.cpp 65 // - static_assert-declarations,
66 static_assert(true, "the impossible happened!");
243 static_assert(XU2().a == 1, "");
244 static_assert(XU4().a == 1, "");
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
multi-level-substitution.cpp 209 static_assert(X6<unsigned char, int>().f1<A, B>(255, 1) == 12, "");
210 static_assert(X6<int, int>().f2(3, 4, 0, 0) == 34, "");
211 static_assert(X6<int, int>().f2(3, 4, 0, 1) == 34, ""); // expected-error {{constant expression}} expected-note {{in call}}
212 static_assert(X6<int, int>::Inner<int, int>().f(1, 2, 3, 4, 5, 6) == 102, "");
  /ndk/sources/cxx-stl/llvm-libc++/include/
__tuple 148 static_assert(_Sp <= _Ep, "__make_tuple_indices input error");
160 static_assert(_Ip == 0, "tuple_element index out of range");
161 static_assert(_Ip != 0, "tuple_element index out of range");
216 static_assert(_Sp <= _Ep, "__make_tuple_types input error");
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.lib.binders/depr.lib.binder.1st/
binder1st.pass.cpp 41 static_assert((std::is_base_of<
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.lib.binders/depr.lib.binder.2nd/
binder2nd.pass.cpp 41 static_assert((std::is_base_of<
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.types/
nullptr_t.pass.cpp 23 static_assert(sizeof(std::nullptr_t) == sizeof(void*),
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale/locale.types/locale.category/
category.pass.cpp 24 static_assert((std::is_same<std::locale::category, int>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.adapt/rand.adapt.shuf/
eval.pass.cpp 30 static_assert(Min < Max, "rand1 invalid parameters");
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/unord.hash/
floating.pass.cpp 31 static_assert((std::is_base_of<std::unary_function<T, std::size_t>,
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.cast/
time_point_cast.pass.cpp 32 static_assert((std::is_same<R, ToTimePoint>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.traits/time.traits.specializations/
duration.pass.cpp 25 static_assert((std::is_same<Dc, De>::value), "");
  /external/v8/src/arm/
macro-assembler-arm.cc     [all...]

Completed in 691 milliseconds

<<21222324252627282930>>