HomeSort by relevance Sort by last modified time
    Searched full:static_assert (Results 851 - 875 of 1130) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/WebKit/Source/wtf/
Assertions.h 301 /* Unlike static_assert below, this also works in plain C code. */
304 #define COMPILE_ASSERT(exp, name) static_assert((exp), #name)
  /external/chromium_org/third_party/skia/include/gpu/
GrConfig.h 308 // static_assert.
311 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug")
  /external/chromium_org/v8/src/
hashmap.h 318 STATIC_ASSERT(sizeof(Key*) == sizeof(void*)); // NOLINT
319 STATIC_ASSERT(sizeof(Value*) == sizeof(void*)); // NOLINT
atomicops_internals_x86_msvc.h 121 STATIC_ASSERT(sizeof(Atomic64) == sizeof(PVOID));
transitions.h 156 STATIC_ASSERT(kSimpleTransitionIndex != kNotFound);
  /external/llvm/include/llvm/Support/
Compiler.h 379 /// \brief Expands to C/C++'s static_assert on compilers which support it.
381 # define LLVM_STATIC_ASSERT(expr, msg) static_assert(expr, msg)
  /external/skia/include/gpu/
GrConfig.h 308 // static_assert.
311 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug")
  /external/v8/src/
hashmap.h 299 STATIC_ASSERT(sizeof(Key*) == sizeof(void*)); // NOLINT
300 STATIC_ASSERT(sizeof(Value*) == sizeof(void*)); // NOLINT
objects-visiting.h 118 STATIC_ASSERT(kVisitorIdCount <= 256);
188 STATIC_ASSERT(
atomicops_internals_x86_msvc.h 121 STATIC_ASSERT(sizeof(Atomic64) == sizeof(PVOID));
scanner.h 59 STATIC_ASSERT((kLanguageModeMask & CLASSIC_MODE) == CLASSIC_MODE);
60 STATIC_ASSERT((kLanguageModeMask & STRICT_MODE) == STRICT_MODE);
61 STATIC_ASSERT((kLanguageModeMask & EXTENDED_MODE) == EXTENDED_MODE);
450 STATIC_ASSERT(kCharacterLookaheadBufferSize == 1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
random     [all...]
  /external/v8/src/ia32/
builtins-ia32.cc 361 STATIC_ASSERT(kSmiTagSize == 1 && kSmiTag == 0);
616 STATIC_ASSERT(LAST_SPEC_OBJECT_TYPE == LAST_TYPE);
809 STATIC_ASSERT(LAST_SPEC_OBJECT_TYPE == LAST_TYPE);
900 STATIC_ASSERT(initial_capacity >= 0);
    [all...]
codegen-ia32.cc 687 STATIC_ASSERT(kSeqStringTag == 0);
704 STATIC_ASSERT(kTwoByteStringTag == 0);
719 STATIC_ASSERT((kStringEncodingMask & kAsciiStringTag) != 0);
720 STATIC_ASSERT((kStringEncodingMask & kTwoByteStringTag) == 0);
  /external/clang/include/clang/Basic/
DiagnosticCommonKinds.td 48 "%select{in %1|for diagnostic message in static_assert|"
  /external/clang/test/Parser/
cxx11-user-defined-literals.cpp 24 static_assert(true, "foo"_bar); // expected-error {{user-defined suffix cannot be used here}}
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
lcast_precision.hpp 33 #include <boost/static_assert.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
promotion.hpp 39 #include <boost/static_assert.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
floating_point_comparison.hpp 26 #include <boost/static_assert.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_abstract.hpp 53 #include <boost/static_assert.hpp>
make_unsigned.hpp 26 #include <boost/static_assert.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
value_init.hpp 27 #include <boost/static_assert.hpp>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
functional_hash.h 60 static_assert(sizeof(_Tp) < 0,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
chrono 226 static_assert(!__is_duration<_Rep>::value, "rep cannot be a duration");
227 static_assert(__is_ratio<_Period>::value,
229 static_assert(_Period::num > 0, "period must be positive");
667 static_assert(system_clock::duration::min()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
functional_hash.h 60 static_assert(sizeof(_Tp) < 0,

Completed in 1056 milliseconds

<<31323334353637383940>>