HomeSort by relevance Sort by last modified time
    Searched refs:condition (Results 76 - 100 of 1405) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/vixl/src/
globals-vixl.h 74 #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_LINE(__LINE__, condition) //NOLIN
    [all...]
  /external/chromium_org/base/mac/
mach_logging.h 66 #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_err)
    [all...]
mac_logging.h 62 #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, status)
    [all...]
  /external/libcxx/test/thread/thread.condition/thread.condition.condvarany/
Android.mk 17 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.condvarany/wait_unti
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeFilter.h 69 static PassRefPtrWillBeRawPtr<NodeFilter> create(PassRefPtrWillBeRawPtr<NodeFilterCondition> condition)
71 return adoptRefWillBeNoop(new NodeFilter(condition));
81 void setCondition(PassRefPtrWillBeRawPtr<NodeFilterCondition> condition)
83 m_condition = condition;
89 explicit NodeFilter(PassRefPtrWillBeRawPtr<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........
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/
ClassInSecondaryDex.java 20 private boolean condition; field in class:ClassInSecondaryDex
22 public ClassInSecondaryDex(boolean condition) {
23 this.condition = condition;
28 if (condition) {
35 if (condition) {
IntermediateClass.java 20 public static int get1(boolean condition) {
21 return new ClassInSecondaryDex(condition).get1();
24 public static int get2(boolean condition) {
25 return new ClassInSecondaryDex(condition).get2();
28 public static int get3(boolean condition) {
29 ClassInSecondaryDex thrower = new ClassInSecondaryDex(condition);
53 public static int get4(boolean condition) {
54 ClassInSecondaryDex thrower = new ClassInSecondaryDex(condition);
MiniIntermediateClass.java 20 public static int get3(boolean condition) {
21 ClassInSecondaryDex thrower = new ClassInSecondaryDex(condition);
  /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...]
  /external/chromium_org/third_party/angle/src/third_party/systeminfo/
SystemInfo.cpp 41 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/
warn-string-conversion.cpp 5 void assert(bool condition);
  /development/ndk/platforms/android-3/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/
loop-statements.js 9 function condition() function
  /external/compiler-rt/test/asan/TestCases/
initialization-nobug.cc 16 bool condition = true; variable
18 return condition ? 0x2a : 052;
  /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)]))
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))

Completed in 2167 milliseconds

1 2 34 5 6 7 8 91011>>