/external/jsoncpp/include/json/ |
D | assertions.h | 16 #define JSON_ASSERT( condition ) assert( condition ); // @todo <= change this into an exception th… argument 19 #define JSON_ASSERT( condition ) assert( condition ); argument 29 #define JSON_ASSERT_MESSAGE( condition, message ) if (!( condition )) { JSON_FAIL_MESSAGE( message … argument
|
/external/vixl/src/vixl/ |
D | globals.h | 77 #define VIXL_ASSERT(condition) assert(condition) argument 78 #define VIXL_CHECK(condition) VIXL_ASSERT(condition) argument 87 #define VIXL_ASSERT(condition) ((void) 0) argument 88 #define VIXL_CHECK(condition) assert(condition) argument 96 #define VIXL_STATIC_ASSERT_LINE(line, condition) \ argument 99 #define VIXL_STATIC_ASSERT(condition) VIXL_STATIC_ASSERT_LINE(__LINE__, condition) //NOLINT argument
|
/external/fio/compiler/ |
D | compiler.h | 40 #define __compiletime_error_fallback(condition) do { } while (0) argument 43 #define __compiletime_assert(condition, msg, prefix, suffix) \ argument 52 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 55 #define compiletime_assert(condition, msg) \ argument
|
/external/clang/test/Analysis/ |
D | cfref_rdar6080742.c | 37 #define Assert(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]… argument 38 #define AssertMsg(condition, message)if (!(condition)) { DebugStop("Assertion failure: %s (%s) [Fil… argument 39 #define Require(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu… argument 40 #define RequireAction(condition, action)if (!(condition)) { DebugStop("Assertion failure: %s [File:… argument 41 #define RequireActionSilent(condition, action)if (!(condition)) { action } argument
|
/external/linux-tools-perf/src/tools/perf/util/include/asm/ |
D | bug.h | 6 #define WARN(condition, format...) ({ \ argument 13 #define WARN_ONCE(condition, format...) ({ \ argument
|
/external/emma/core/java12/com/vladium/util/asserts/ |
D | $assert.java | 33 public static void ASSERT (final boolean condition, final String msg) in ASSERT() 41 public static void ASSERT (final boolean condition) in ASSERT()
|
/external/guava/guava/src/com/google/common/math/ |
D | MathPreconditions.java | 79 static void checkRoundingUnnecessary(boolean condition) { in checkRoundingUnnecessary() 85 static void checkInRange(boolean condition) { in checkInRange() 91 static void checkNoOverflow(boolean condition) { in checkNoOverflow()
|
/external/v8/src/compiler/ |
D | control-builders.cc | 12 void IfBuilder::If(Node* condition) { in If() 67 void LoopBuilder::BreakUnless(Node* condition) { in BreakUnless() 85 void SwitchBuilder::BeginLabel(int index, Node* condition) { in BeginLabel()
|
/external/v8/src/ |
D | checks.h | 26 #define SLOW_DCHECK(condition) \ argument 30 #define SLOW_DCHECK(condition) ((void) 0) argument
|
/external/libexif/test/ |
D | test-integers.c | 39 # define CHECK(condition) \ argument 46 # define CHECK(condition) \ argument
|
/external/google-breakpad/src/processor/ |
D | contained_range_map_unittest.cc | 41 #define ASSERT_TRUE(condition) \ argument 47 #define ASSERT_FALSE(condition) ASSERT_TRUE(!(condition)) argument
|
D | logging.h | 149 #define BPLOG_LAZY_STREAM(stream, condition) \ argument 183 #define BPLOG_IF(severity, condition) \ argument
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_assert.c | 40 lp_assert(int condition, const char *msg) in lp_assert() 61 LLVMValueRef condition, in lp_build_assert()
|
/external/mesa3d/src/mesa/program/ |
D | program_lexer.l | 43 #define return_token_or_IDENTIFIER(condition, token) \ argument 52 #define return_token_or_DOT(condition, token) \ argument 63 #define return_opcode(condition, token, opcode, len) \ argument
|
/external/embunit/inc/ |
D | AssertImpl.h | 59 #define TEST_ASSERT_MESSAGE(condition, message)\ argument 62 #define TEST_ASSERT(condition)\ argument
|
/external/deqp/framework/common/ |
D | tcuResultCollector.cpp | 79 bool ResultCollector::checkResult (bool condition, qpTestResult result, const std::string& msg) in checkResult() 91 bool ResultCollector::check (bool condition, const std::string& msg) in check()
|
/external/ceres-solver/internal/ceres/miniglog/glog/ |
D | logging.h | 295 #define LOG_IF(severity, condition) \ argument 300 #define LOG_IF_FALSE(severity, condition) LOG_IF(severity, !(condition)) argument 309 # define VLOG_IF(n, condition) LOG_IF(n, (n <= MAX_LOG_LEVEL) && condition) argument 314 # define VLOG_IF(n, condition) LOG_IF(n, condition) argument 342 #define CHECK(condition) LOG_IF_FALSE(FATAL, condition) \ argument 347 # define DCHECK(condition) LOG_IF_FALSE(FATAL, condition) \ argument 351 # define DCHECK(condition) if (false) LOG_IF_FALSE(FATAL, condition) \ argument
|
/external/webp/src/utils/ |
D | thread.c | 98 static int pthread_cond_destroy(pthread_cond_t* const condition) { in pthread_cond_destroy() 106 static int pthread_cond_init(pthread_cond_t* const condition, void* cond_attr) { in pthread_cond_init() 120 static int pthread_cond_signal(pthread_cond_t* const condition) { in pthread_cond_signal() 133 static int pthread_cond_wait(pthread_cond_t* const condition, in pthread_cond_wait()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_thread.h | 95 static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) { in pthread_cond_destroy() 103 static INLINE int pthread_cond_init(pthread_cond_t *const condition, in pthread_cond_init() 118 static INLINE int pthread_cond_signal(pthread_cond_t *const condition) { in pthread_cond_signal() 131 static INLINE int pthread_cond_wait(pthread_cond_t *const condition, in pthread_cond_wait()
|
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/util/ |
D | Assert.java | 60 public static void isTrue(boolean condition, String message) { in isTrue() 71 public static void isFalse(boolean condition, String message) { in isFalse()
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/util/ |
D | Assert.java | 60 public static void isTrue(boolean condition, String message) { in isTrue() 71 public static void isFalse(boolean condition, String message) { in isFalse()
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/util/ |
D | Assert.java | 60 public static void isTrue(boolean condition, String message) { in isTrue() 71 public static void isFalse(boolean condition, String message) { in isFalse()
|
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/util/ |
D | Assert.java | 60 public static void isTrue(boolean condition, String message) { in isTrue() 71 public static void isFalse(boolean condition, String message) { in isFalse()
|
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/util/ |
D | Assert.java | 60 public static void isTrue(boolean condition, String message) { in isTrue() 71 public static void isFalse(boolean condition, String message) { in isFalse()
|
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/core/util/ |
D | Assert.java | 60 public static void isTrue(boolean condition, String message) { in isTrue() 71 public static void isFalse(boolean condition, String message) { in isFalse()
|