Searched refs:condition (Results 1 - 25 of 283) 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/clang/test/SemaCXX/
H A Dwarn-string-conversion.cpp5 void assert(bool condition);
/external/linux-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/webkit/Source/WebCore/inspector/
H A DScriptBreakpoint.h42 ScriptBreakpoint(int lineNumber, int columnNumber, const String& condition) argument
45 , condition(condition)
51 String condition; member in struct:WebCore::ScriptBreakpoint
/external/kernel-headers/original/asm-generic/
H A Dbug.h15 #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
19 #define WARN_ON(condition) do { \
20 if (unlikely((condition)!=0)) { \
33 #define BUG_ON(condition) do { if (condition) ; } while(0)
37 #define WARN_ON(condition) do { if (condition) ; } while(0)
41 #define WARN_ON_ONCE(condition) \
46 if (unlikely((condition)
[all...]
/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/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/webkit/Source/WebCore/inspector/front-end/
H A DSourceTokenizer.js41 set condition(condition)
43 this._condition = condition;
46 get condition()
53 return this.condition.lexCondition;
58 this.condition.lexCondition = lexCondition;
/external/chromium/chrome/browser/debugger/manual_tests/resources/
H A Dloop-statements.js9 function condition() function
/external/webkit/Source/WebCore/manual-tests/inspector/resources/
H A Dloop-statements.js9 function condition() function
/external/webkit/Tools/DumpRenderTree/chromium/
H A Dconfig.h40 #define CHECK(condition) while (false && (condition)) std::cerr
41 #define DCHECK(condition) while (false && (condition)) std::cerr
/external/kernel-headers/original/asm-mips/
H A Dbug.h19 #define BUG_ON(condition) \
22 : : "r" (condition), "i" (BRK_BUG)); \
/external/embunit/inc/
H A DAssertImpl.h59 #define TEST_ASSERT_MESSAGE(condition, message)\
60 if (condition) {} else {TEST_FAIL(message);}
62 #define TEST_ASSERT(condition)\
63 if (condition) {} else {TEST_FAIL(#condition);}
/external/guava/guava/src/com/google/common/math/
H A DMathPreconditions.java74 static void checkRoundingUnnecessary(boolean condition) { argument
75 if (!condition) {
80 static void checkInRange(boolean condition) { argument
81 if (!condition) {
86 static void checkNoOverflow(boolean condition) { argument
87 if (!condition) {
/external/webkit/Source/WebCore/dom/
H A DNodeFilter.h68 static PassRefPtr<NodeFilter> create(PassRefPtr<NodeFilterCondition> condition) argument
70 return adoptRef(new NodeFilter(condition));
84 void setCondition(PassRefPtr<NodeFilterCondition> condition) { ASSERT(!m_condition); m_condition = condition; } argument
87 NodeFilter(PassRefPtr<NodeFilterCondition> condition) : m_condition(condition) { } argument
/external/kernel-headers/original/linux/
H A Dwait.h155 #define __wait_event(wq, condition) \
161 if (condition) \
169 * wait_event - sleep until a condition gets true
171 * @condition: a C expression for the event to wait for
174 * @condition evaluates to true. The @condition is checked each time
178 * change the result of the wait condition.
180 #define wait_event(wq, condition) \
182 if (condition) \
184 __wait_event(wq, condition); \
[all...]
/external/chromium/base/
H A Dlogging.h58 // The CHECK(condition) macro is active in both debug and release builds and
103 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
110 // There is also a VLOG_IF "verbose level" condition macro for sample
126 // PCHECK(condition) << "Couldn't do foo";
127 // DPCHECK(condition) << "Couldn't do foo";
204 // values, and there is a race condition that may leak a critical section
355 // the condition doesn't hold.
356 #define LAZY_STREAM(stream, condition) \
357 !(condition) ? (void) 0 : ::logging::LogMessageVoidify() & (stream)
370 #define LOG_IF(severity, condition) \
[all...]
/external/mesa3d/src/glsl/
H A Dlower_discard.cpp105 * Unconditional discards are treated as having a condition of "true".
150 ir_rvalue *condition = ir->condition; local
152 /* For unconditional discards, use "true" as the condition. */
153 if (condition == NULL)
154 condition = new(mem_ctx) ir_constant(true);
158 condition, NULL);
192 discard->condition = new(mem_ctx) ir_dereference_variable(temp);
/external/chromium/testing/gtest/test/
H A Dgtest_uninitialized_test.py42 def Assert(condition):
43 if not condition:
/external/gtest/test/
H A Dgtest_uninitialized_test.py42 def Assert(condition):
43 if not condition:
/external/protobuf/gtest/test/
H A Dgtest_uninitialized_test.py42 def Assert(condition):
43 if not condition:
/external/v8/test/mjsunit/
H A Ddebug-stepnext-do-while.js43 assertEquals(' } while(condition());',
63 function condition() { function
70 } while(condition());
/external/webkit/Source/WebKit2/Scripts/webkit2/
H A Dmessages.py55 def __init__(self, name, messages, condition):
58 self.condition = condition
68 condition = None
73 if condition:
74 master_condition = condition
75 condition = None
80 condition = line.rstrip()[4:]
82 condition = None
93 parameter.condition
[all...]
/external/chromium/googleurl/base/
H A Dlogging.h108 // values, and there is a race condition that may leak a critical section
193 #define LOG_IF(severity, condition) \
194 !(condition) ? (void) 0 : logging::LogMessageVoidify() & LOG(severity)
195 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
197 #define LOG_ASSERT(condition) \
198 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
199 #define SYSLOG_ASSERT(condition) \
200 SYSLOG_IF(FATAL, !(condition)) << "Asser
[all...]
/external/icu4c/test/cintltst/
H A Dcapitst.h32 static void doAssert(int condition, const char *message);

Completed in 945 milliseconds

1234567891011>>