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

  /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)
  /external/webrtc/webrtc/system_wrappers/include/
compile_assert_c.h 21 // COMPILE_ASSERT(sizeof(foo) < 128);
22 #define COMPILE_ASSERT(expression) switch (0) {case 0: case expression:;}
  /system/bt/osi/include/
osi.h 38 // base/macros.h defines a COMPILE_ASSERT macro to the C++11 keyword
39 // "static_assert" (it undef's COMPILE_ASSERT before redefining it).
42 #ifndef COMPILE_ASSERT
43 #define COMPILE_ASSERT(COND) \
45 #endif // COMPILE_ASSERT
  /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);
  /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/regex-re2/util/
util.h 80 // COMPILE_ASSERT causes a compile error about msg if expr is not true.
82 #define COMPILE_ASSERT(expr, msg) \

Completed in 167 milliseconds