Searched refs:condition (Results 1 - 25 of 596) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/util/asserts/
H A D$assert.java30 * @param condition
33 public static void ASSERT (final boolean condition, final String msg) argument
37 if (! condition) throw new RuntimeException (msg);
41 public static void ASSERT (final boolean condition) argument
45 if (! condition) throw new RuntimeException ("ASSERTION FAILURE");
/external/jsoncpp/include/json/
H A Dassertions.h16 #define JSON_ASSERT( condition ) assert( condition ); // @todo <= change this into an exception throw
19 #define JSON_ASSERT( condition ) assert( condition );
29 #define JSON_ASSERT_MESSAGE( condition, message ) if (!( condition )) { JSON_FAIL_MESSAGE( message ) }
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
H A Doi_assert.h43 /** The macro OI_ASSERT takes a condition argument. If the asserted condition
50 #define OI_ASSERT(condition) \
51 { if (!(condition)) OI_AssertFail(__FILE__, __LINE__, #condition); }
59 #define OI_ASSERT(condition)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptBreakpoint.h42 ScriptBreakpoint(int lineNumber, int columnNumber, const String& condition) argument
45 , condition(condition)
51 String condition; member in struct:blink::ScriptBreakpoint
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_assert.h38 LLVMValueRef condition,
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/asm/
H A Dbug.h6 #define WARN(condition, format...) ({ \
7 int __ret_warn_on = !!(condition); \
13 #define WARN_ONCE(condition, format...) ({ \
15 int __ret_warn_once = !!(condition); \
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_assert.h38 LLVMValueRef condition,
/external/libexif/test/
H A Dtest-integers.c39 # define CHECK(condition) \
40 if (!(condition)) { \
42 __FILE__, __LINE__, #condition); \
46 # define CHECK(condition) \
47 if (!(condition)) { \
/external/chromium_org/mojo/public/cpp/environment/
H A Dlogging.h25 #define MOJO_LAZY_LOG_STREAM(level, condition) \
26 !(condition) ? \
37 #define MOJO_LOG_IF(level, condition) \
38 MOJO_LAZY_LOG_STREAM(level, MOJO_SHOULD_LOG(level) && (condition))
40 #define MOJO_CHECK(condition) \
41 MOJO_LAZY_LOG_STREAM(FATAL, !(condition)) \
42 << "Check failed: " #condition ". "
45 // compile) the condition, whereas |MOJO_DCHECK()| "neuters" the condition
50 #define MOJO_DLOG_IF(level, condition) MOJO_LAZY_LOG_STREA
[all...]
/external/libcxx/test/thread/thread.condition/thread.condition.condvar/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.condition/thread.condition.condvar/Android.mk
19 test_name := thread/thread.condition/thread.condition.condvar/default
23 test_name := thread/thread.condition/thread.condition.condvar/notify_one
27 test_name := thread/thread.condition/thread.condition.condvar/wait_until
31 test_name := thread/thread.condition/thread.condition
[all...]
/external/chromium_org/chrome/test/mini_installer/
H A Dverifier.py16 'condition' property, a string that determines whether the expectation
22 if 'condition' in expectation:
23 condition = variable_expander.Expand(expectation['condition'])
24 if not self._EvaluateCondition(condition):
43 def _EvaluateCondition(self, condition):
44 """Evaluates |condition| using eval().
47 condition: A condition string.
50 The result of the evaluated condition
[all...]
/external/chromium_org/ui/webui/resources/js/
H A Dassert.js10 * Verify |condition| is truthy and return |condition| if so.
12 * @param {T} condition A condition to check for truthiness. Note that this
16 * @return {T} A non-null |condition|.
18 function assert(condition, opt_message) {
20 if (!condition) {
26 return condition;
/external/clang/test/Analysis/
H A Dcfref_rdar6080742.c34 void DebugTraceIf(unsigned int condition, const char *format,...);
37 #define Assert(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]", #condition, __FILE__, __LINE__); }
38 #define AssertMsg(condition, message)if (!(condition)) { DebugStop("Assertion failure: %s (%s) [File: %s, Line: %lu]", #condition, message, __FILE__, __LINE__); }
39 #define Require(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]", #condition, __FILE_
[all...]
/external/vixl/src/
H A Dglobals-vixl.h74 #define VIXL_ASSERT(condition) assert(condition)
75 #define VIXL_CHECK(condition) VIXL_ASSERT(condition)
84 #define VIXL_ASSERT(condition) ((void) 0)
85 #define VIXL_CHECK(condition) assert(condition)
93 #define VIXL_STATIC_ASSERT_LINE(line, condition) \
94 typedef char VIXL_CONCAT(STATIC_ASSERT_LINE_, line)[(condition) ? 1 : -1] \
96 #define VIXL_STATIC_ASSERT(condition) VIXL_STATIC_ASSERT_LIN
[all...]
/external/chromium_org/base/mac/
H A Dmach_logging.h66 #define MACH_LOG_IF(severity, condition, mach_err) \
68 LOG_IS_ON(severity) && (condition))
73 #define MACH_VLOG_IF(verbose_level, condition, mach_err) \
75 VLOG_IS_ON(verbose_level) && (condition))
77 #define MACH_CHECK(condition, mach_err) \
78 LAZY_STREAM(MACH_LOG_STREAM(FATAL, mach_err), !(condition)) \
79 << "Check failed: " # condition << ". "
83 #define MACH_DLOG_IF(severity, condition, mach_err) \
85 DLOG_IS_ON(severity) && (condition))
90 #define MACH_DVLOG_IF(verbose_level, condition, mach_er
[all...]
H A Dmac_logging.h62 #define OSSTATUS_LOG_IF(severity, condition, status) \
64 LOG_IS_ON(severity) && (condition))
69 #define OSSTATUS_VLOG_IF(verbose_level, condition, status) \
71 VLOG_IS_ON(verbose_level) && (condition))
73 #define OSSTATUS_CHECK(condition, status) \
74 LAZY_STREAM(OSSTATUS_LOG_STREAM(FATAL, status), !(condition)) \
75 << "Check failed: " # condition << ". "
79 #define OSSTATUS_DLOG_IF(severity, condition, status) \
81 DLOG_IS_ON(severity) && (condition))
86 #define OSSTATUS_DVLOG_IF(verbose_level, condition, statu
[all...]
/external/libcxx/test/thread/thread.condition/thread.condition.condvarany/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.condition/thread.condition.condvarany/Android.mk
19 test_name := thread/thread.condition/thread.condition.condvarany/default
23 test_name := thread/thread.condition/thread.condition.condvarany/wait_for.exception
27 test_name := thread/thread.condition/thread.condition.condvarany/notify_one
31 test_name := thread/thread.condition/thread.condition
[all...]
/external/valgrind/main/drd/tests/
H A Dpth_uninitialized_cond.stderr.exp2 Statically initialized condition variable.
3 Uninitialized condition variable.
4 condition variable has not been initialized: cond 0x........
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
H A DCondition.java19 package org.apache.tools.ant.taskdefs.condition;
24 * Interface for conditions to use inside the &lt;condition&gt; task.
29 * Is this condition true?
30 * @return true if the condition is true
/external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/
H A Dloop-statements.js9 function condition() function
/external/chromium_org/third_party/angle/src/third_party/systeminfo/
H A DSystemInfo.cpp41 DWORDLONG condition = 0; local
42 VER_SET_CONDITION(condition, VER_MAJORVERSION, VER_GREATER_EQUAL);
43 VER_SET_CONDITION(condition, VER_MINORVERSION, VER_GREATER_EQUAL);
44 return !!::VerifyVersionInfoW(&osvi, VER_MAJORVERSION | VER_MINORVERSION, condition);
/external/clang/test/SemaCXX/
H A Dwarn-string-conversion.cpp5 void assert(bool condition);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-350863.js31 function __f_8(base, condition) {
34 if (condition) {
/external/compiler-rt/test/asan/TestCases/
H A Dinitialization-nobug.cc16 bool condition = true; variable
18 return condition ? 0x2a : 052;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
H A DRTCSessionDescriptionSyncObserver.m39 @property(nonatomic, strong) NSCondition* condition;
50 @synthesize condition = _condition;
63 [self.condition signal];
67 [self.condition lock];
69 [self.condition wait];
71 [self.condition unlock];
78 [self.condition lock];
87 [self.condition unlock];
92 [self.condition lock];
100 [self.condition unloc
[all...]

Completed in 800 milliseconds

1234567891011>>