Home
last modified time | relevance | path

Searched defs:condition (Results 1 – 25 of 253) sorted by relevance

1234567891011

/external/jsoncpp/include/json/
Dassertions.h16 #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/
Dglobals.h77 #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/
Dcompiler.h40 #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/
Dcfref_rdar6080742.c37 #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/
Dbug.h6 #define WARN(condition, format...) ({ \ argument
13 #define WARN_ONCE(condition, format...) ({ \ argument
/external/emma/core/java12/com/vladium/util/asserts/
D$assert.java33 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/
DMathPreconditions.java79 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/
Dcontrol-builders.cc12 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/
Dchecks.h26 #define SLOW_DCHECK(condition) \ argument
30 #define SLOW_DCHECK(condition) ((void) 0) argument
/external/libexif/test/
Dtest-integers.c39 # define CHECK(condition) \ argument
46 # define CHECK(condition) \ argument
/external/google-breakpad/src/processor/
Dcontained_range_map_unittest.cc41 #define ASSERT_TRUE(condition) \ argument
47 #define ASSERT_FALSE(condition) ASSERT_TRUE(!(condition)) argument
Dlogging.h149 #define BPLOG_LAZY_STREAM(stream, condition) \ argument
183 #define BPLOG_IF(severity, condition) \ argument
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_assert.c40 lp_assert(int condition, const char *msg) in lp_assert()
61 LLVMValueRef condition, in lp_build_assert()
/external/mesa3d/src/mesa/program/
Dprogram_lexer.l43 #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/
DAssertImpl.h59 #define TEST_ASSERT_MESSAGE(condition, message)\ argument
62 #define TEST_ASSERT(condition)\ argument
/external/deqp/framework/common/
DtcuResultCollector.cpp79 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/
Dlogging.h295 #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/
Dthread.c98 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/
Dvp9_thread.h95 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/
DAssert.java60 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/
DAssert.java60 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/
DAssert.java60 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/
DAssert.java60 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/
DAssert.java60 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/
DAssert.java60 public static void isTrue(boolean condition, String message) { in isTrue()
71 public static void isFalse(boolean condition, String message) { in isFalse()

1234567891011