Searched refs:condition (Results 1 - 25 of 255) 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/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/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/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);
H A Dopt_constant_folding.cpp93 if (ir->condition) {
94 ir->condition->accept(this);
95 handle_rvalue(&ir->condition);
97 ir_constant *const_val = ir->condition->as_constant();
98 /* If the condition is constant, either remove the condition or
103 ir->condition = NULL;
/external/chromium/testing/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);
/external/llvm/lib/Support/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const {
36 return default_error_condition(code) == condition;
40 error_category::equivalent(const error_code& code, int condition) const {
41 return *this == code.category() && code.value() == condition;
/external/webkit/Tools/Scripts/
H A Dadd-include74 my $condition = $1;
80 $currentCondition = $condition;
111 for my $condition (sort keys %includes) {
112 $contents .= "#if $condition\n" unless $condition eq "";
113 $contents .= includesParagraph($includes{$condition});
114 $contents .= "#endif\n" unless $condition eq "";
/external/gtest/test/
H A Dgtest_uninitialized_test.py58 def Assert(condition):
59 if not condition:

Completed in 740 milliseconds

1234567891011