HomeSort by relevance Sort by last modified time
    Searched refs:condition (Results 51 - 75 of 1124) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/linux-tools-perf/util/include/asm/
bug.h 6 #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/
lp_bld_assert.h 38 LLVMValueRef condition,
  /external/kernel-headers/original/asm-generic/
bug.h 15 #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) && __warn_once)) {
    [all...]
  /external/libexif/test/
test-integers.c 39 # define CHECK(condition) \
40 if (!(condition)) { \
42 __FILE__, __LINE__, #condition); \
46 # define CHECK(condition) \
47 if (!(condition)) { \
  /external/clang/test/Analysis/
cfref_rdar6080742.c 34 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__, __LINE__);
    [all...]
  /external/chromium_org/base/mac/
mac_logging.h 54 #define OSSTATUS_LOG_IF(severity, condition, status) \
56 LOG_IS_ON(severity) && (condition))
61 #define OSSTATUS_VLOG_IF(verbose_level, condition, status) \
63 VLOG_IS_ON(verbose_level) && (condition))
65 #define OSSTATUS_CHECK(condition, status) \
66 LAZY_STREAM(OSSTATUS_LOG_STREAM(FATAL, status), !(condition)) \
67 << "Check failed: " # condition << ". "
71 #define OSSTATUS_DLOG_IF(severity, condition, status) \
73 DLOG_IS_ON(severity) && (condition))
78 #define OSSTATUS_DVLOG_IF(verbose_level, condition, status)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeFilter.h 68 static PassRefPtr<NodeFilter> create(PassRefPtr<NodeFilterCondition> condition)
70 return adoptRef(new NodeFilter(condition));
80 void setCondition(PassRefPtr<NodeFilterCondition> condition)
82 m_condition = condition;
86 explicit NodeFilter(PassRefPtr<NodeFilterCondition> condition) : m_condition(condition)
  /external/valgrind/main/drd/tests/
pth_uninitialized_cond.stderr.exp 2 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/
Condition.java 19 package org.apache.tools.ant.taskdefs.condition;
24 * Interface for conditions to use inside the &lt;condition&gt; task.
27 public interface Condition {
29 * Is this condition true?
30 * @return true if the condition is true
  /external/chromium_org/chrome/test/mini_installer/
verifier.py 16 '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...]
  /bionic/libc/kernel/common/linux/
kernel.h 42 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /development/ndk/platforms/android-3/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /external/chromium/chrome/browser/debugger/manual_tests/resources/
loop-statements.js 9 function condition() function
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/
loop-statements.js 9 function condition() function
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
initialization-nobug.cc 16 bool condition = true; variable
18 return condition ? 0x2a : 052;
  /external/kernel-headers/original/asm-mips/
bug.h 19 #define BUG_ON(condition) \
22 : : "r" (condition), "i" (BRK_BUG)); \
  /ndk/tests/build/wchar_t-size/jni/
test_always_signed.c 10 #define STATIC_ASSERT(condition) \
11 static char CONCAT(dummy_,__LINE__)[1 - 2*(!(condition))];
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
kernel.h 27 /* Force a compilation error if condition is true */
28 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
30 /* Force a compilation error if condition is true, but also produce a
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
kernel.h 27 /* Force a compilation error if condition is true */
28 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
30 /* Force a compilation error if condition is true, but also produce a
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
kernel.h 27 /* Force a compilation error if condition is true */
28 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
30 /* Force a compilation error if condition is true, but also produce a
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))

Completed in 1453 milliseconds

1 23 4 5 6 7 8 91011>>