HomeSort by relevance Sort by last modified time
    Searched refs:COMPILE_ASSERT (Results 1 - 19 of 19) sorted by null

  /external/webrtc/src/system_wrappers/interface/
compile_assert.h 17 * COMPILE_ASSERT(sizeof(foo) < 128);
19 #define COMPILE_ASSERT(expression) switch(0){case 0: case expression:;}
  /external/pdfium/third_party/base/
macros.h 13 // The COMPILE_ASSERT macro can be used to verify that a compile time
17 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,
22 // COMPILE_ASSERT(sizeof(foo) < 128, foo_too_large);
28 #undef COMPILE_ASSERT
29 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
  /system/bt/osi/include/
osi.h 20 #define COMPILE_ASSERT(x) char * DUMMY_PTR = !(x)
  /system/extras/perfprofd/quipper/base/
macros.h 140 // The COMPILE_ASSERT macro can be used to verify that a compile time
144 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,
149 // COMPILE_ASSERT(sizeof(foo) < 128, foo_too_large);
155 #undef COMPILE_ASSERT
156 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
214 COMPILE_ASSERT(sizeof(Dest) == sizeof(Source), VerifySizesAreEqual);
logging.h 655 #define NOTIMPLEMENTED() COMPILE_ASSERT(false, NOT_IMPLEMENTED)
657 #define NOTIMPLEMENTED() COMPILE_ASSERT(false, NOT_IMPLEMENTED)
  /external/webrtc/src/system_wrappers/source/
atomic32_win.cc 17 #include "compile_assert.h"
25 COMPILE_ASSERT(sizeof(_value) == sizeof(LONG));
  /external/ceres-solver/internal/ceres/
mutex.h 279 // "MutexLock(x) COMPILE_ASSERT(false)". To work around this, "Ceres" is
320 COMPILE_ASSERT(0, ceres_mutex_lock_decl_missing_var_name)
322 COMPILE_ASSERT(0, ceres_rmutex_lock_decl_missing_var_name)
324 COMPILE_ASSERT(0, ceres_wmutex_lock_decl_missing_var_name)
  /external/regex-re2/util/
mutex.h 184 #define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name)
185 #define ReaderMutexLock(x) COMPILE_ASSERT(0, rmutex_lock_decl_missing_var_name)
186 #define WriterMutexLock(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
util.h 80 // COMPILE_ASSERT causes a compile error about msg if expr is not true.
82 #define COMPILE_ASSERT(expr, msg) \
  /external/v8/src/base/
macros.h 107 // The COMPILE_ASSERT macro can be used to verify that a compile time
111 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,
116 // COMPILE_ASSERT(sizeof(foo) < 128, foo_too_large);
124 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
131 #define COMPILE_ASSERT(expr, msg) \
135 // Implementation details of COMPILE_ASSERT:
137 // - COMPILE_ASSERT works by defining an array type that has -1
142 // #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
150 // COMPILE_ASSERT(foo, msg); // not supposed to compile as foo is
164 // COMPILE_ASSERT(5 > 0, some_message)
    [all...]
  /external/pdfium/third_party/base/numerics/
safe_conversions_impl.h 207 COMPILE_ASSERT(std::numeric_limits<Src>::is_specialized,
209 COMPILE_ASSERT(std::numeric_limits<Dst>::is_specialized,
safe_math.h 65 COMPILE_ASSERT(std::numeric_limits<Src>::is_specialized,
90 COMPILE_ASSERT(std::numeric_limits<T>::is_iec559, argument_must_be_float);
safe_math_impl.h 366 COMPILE_ASSERT(std::numeric_limits<Src>::is_specialized,
  /frameworks/webview/chromium/plat_support/
draw_gl_functor.cpp 34 #define COMPILE_ASSERT(expr, err) static const char err[(expr) ? 1 : -1] = "";
69 COMPILE_ASSERT(NELEM(aw_info.transform) == NELEM(gl_info->transform),
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
pitch_filter.c 22 #include "system_wrappers/interface/compile_assert.h"
91 COMPILE_ASSERT(PITCH_FRACORDER == 9);
92 COMPILE_ASSERT(PITCH_DAMPORDER == 5);
pitch_estimator.c 24 #include "system_wrappers/interface/compile_assert.h"
215 COMPILE_ASSERT(PITCH_CORR_LEN2 %4 == 0);
  /system/bt/btcore/src/
device_class.c 38 COMPILE_ASSERT(sizeof(_bt_device_class_t) == sizeof(bt_device_class_t));
  /external/regex-re2/re2/
onepass.cc 175 COMPILE_ASSERT((1<<kEmptyShift)-1 == kEmptyAllFlags,
178 COMPILE_ASSERT(kMaxCap == Prog::kMaxOnePassCapture*2,
prog.cc 315 COMPILE_ASSERT(8*sizeof(v.Word(0)) == 32, wordsize);

Completed in 752 milliseconds