Home
last modified time | relevance | path

Searched defs:condition (Results 1 – 25 of 274) sorted by relevance

1234567891011

/external/chromium_org/mojo/public/cpp/environment/
Dlogging.h25 #define MOJO_LAZY_LOG_STREAM(level, condition) \ argument
37 #define MOJO_LOG_IF(level, condition) \ argument
40 #define MOJO_CHECK(condition) \ argument
50 #define MOJO_DLOG_IF(level, condition) MOJO_LAZY_LOG_STREAM(level, false) argument
51 #define MOJO_DCHECK(condition) MOJO_LAZY_LOG_STREAM(FATAL, false && (condition)) argument
56 #define MOJO_DLOG_IF(level, condition) MOJO_LOG_IF(level, condition) argument
57 #define MOJO_DCHECK(condition) MOJO_CHECK(condition) argument
/external/chromium_org/base/mac/
Dmach_logging.h66 #define MACH_LOG_IF(severity, condition, mach_err) \ argument
73 #define MACH_VLOG_IF(verbose_level, condition, mach_err) \ argument
77 #define MACH_CHECK(condition, mach_err) \ argument
83 #define MACH_DLOG_IF(severity, condition, mach_err) \ argument
90 #define MACH_DVLOG_IF(verbose_level, condition, mach_err) \ argument
94 #define MACH_DCHECK(condition, mach_err) \ argument
131 #define BOOTSTRAP_LOG_IF(severity, condition, bootstrap_err) \ argument
138 #define BOOTSTRAP_VLOG_IF(verbose_level, condition, bootstrap_err) \ argument
142 #define BOOTSTRAP_CHECK(condition, bootstrap_err) \ argument
149 #define BOOTSTRAP_DLOG_IF(severity, condition, bootstrap_err) \ argument
[all …]
Dmac_logging.h62 #define OSSTATUS_LOG_IF(severity, condition, status) \ argument
69 #define OSSTATUS_VLOG_IF(verbose_level, condition, status) \ argument
73 #define OSSTATUS_CHECK(condition, status) \ argument
79 #define OSSTATUS_DLOG_IF(severity, condition, status) \ argument
86 #define OSSTATUS_DVLOG_IF(verbose_level, condition, status) \ argument
90 #define OSSTATUS_DCHECK(condition, status) \ argument
/external/vixl/src/
Dglobals-vixl.h74 #define VIXL_ASSERT(condition) assert(condition) argument
75 #define VIXL_CHECK(condition) VIXL_ASSERT(condition) argument
84 #define VIXL_ASSERT(condition) ((void) 0) argument
85 #define VIXL_CHECK(condition) assert(condition) argument
93 #define VIXL_STATIC_ASSERT_LINE(line, condition) \ argument
96 #define VIXL_STATIC_ASSERT(condition) VIXL_STATIC_ASSERT_LINE(__LINE__, condition) //NOLINT argument
/external/jsoncpp/include/json/
Dassertions.h16 #define JSON_ASSERT( condition ) assert( condition ); // @todo <= change this into an exception th… argument
19 #define JSON_ASSERT( condition ) assert( condition ); argument
29 #define JSON_ASSERT_MESSAGE( condition, message ) if (!( condition )) { JSON_FAIL_MESSAGE( message … argument
/external/chromium_org/base/
Dlogging.h354 #define LAZY_STREAM(stream, condition) \ argument
368 #define LOG_IF(severity, condition) \ argument
372 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition) argument
381 #define VLOG_IF(verbose_level, condition) \ argument
398 #define VPLOG_IF(verbose_level, condition) \ argument
404 #define LOG_ASSERT(condition) \ argument
406 #define SYSLOG_ASSERT(condition) \ argument
422 #define PLOG_IF(severity, condition) \ argument
444 #define CHECK(condition) \ argument
447 #define PCHECK(condition) CHECK(condition) argument
[all …]
/external/smack/src/org/jivesoftware/smack/packet/
DXMPPError.java64 private String condition; field in XMPPError
78 public XMPPError(Condition condition) { in XMPPError()
93 public XMPPError(Condition condition, String messageText) { in XMPPError()
134 public XMPPError(int code, Type type, String condition, String message, in XMPPError()
148 private void init(Condition condition) { in init()
359 private Condition condition; field in XMPPError.ErrorSpecification
362 private ErrorSpecification(Condition condition, Type type, int code) { in ErrorSpecification()
422 protected static ErrorSpecification specFor(Condition condition) { in specFor()
/external/qemu/android/base/
DLog.h77 #define LOG_LAZY_EVAL(condition, expr) \ argument
107 #define LOG_IF(severity, condition) \ argument
124 #define PLOG_IF(severity, condition) \ argument
136 #define CHECK(condition) \ argument
142 #define PCHECK(condition) \ argument
205 #define DLOG_IF(severity, condition) \ argument
212 #define DCHECK(condition) \ argument
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/asm/
Dbug.h6 #define WARN(condition, format...) ({ \ argument
13 #define WARN_ONCE(condition, format...) ({ \ argument
/external/emma/core/java12/com/vladium/util/asserts/
D$assert.java33 public static void ASSERT (final boolean condition, final String msg) in ASSERT()
41 public static void ASSERT (final boolean condition) in ASSERT()
/external/guava/guava/src/com/google/common/math/
DMathPreconditions.java74 static void checkRoundingUnnecessary(boolean condition) { in checkRoundingUnnecessary()
80 static void checkInRange(boolean condition) { in checkInRange()
86 static void checkNoOverflow(boolean condition) { in checkNoOverflow()
/external/clang/test/Analysis/
Dcfref_rdar6080742.c37 #define Assert(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]… argument
38 #define AssertMsg(condition, message)if (!(condition)) { DebugStop("Assertion failure: %s (%s) [Fil… argument
39 #define Require(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu… argument
40 #define RequireAction(condition, action)if (!(condition)) { DebugStop("Assertion failure: %s [File:… argument
41 #define RequireActionSilent(condition, action)if (!(condition)) { action } argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
DNodeFilter.h69 …static PassRefPtrWillBeRawPtr<NodeFilter> create(PassRefPtrWillBeRawPtr<NodeFilterCondition> condi… in create()
81 void setCondition(PassRefPtrWillBeRawPtr<NodeFilterCondition> condition) in setCondition()
89 …explicit NodeFilter(PassRefPtrWillBeRawPtr<NodeFilterCondition> condition) : m_condition(condition) in NodeFilter()
/external/chromium_org/sandbox/win/src/
Dsandbox_nt_util.h39 #define DCHECK_NT(condition) { (condition) ? (void)0 : __debugbreak(); } argument
43 #define DCHECK_NT(condition) argument
48 #define CHECK_NT(condition) { (condition) ? (void)0 : __debugbreak(); } argument
/external/libexif/test/
Dtest-integers.c39 # define CHECK(condition) \ argument
46 # define CHECK(condition) \ argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
Dlp_bld_assert.c40 lp_assert(int condition, const char *msg) in lp_assert()
61 LLVMValueRef condition, in lp_build_assert()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_assert.c40 lp_assert(int condition, const char *msg) in lp_assert()
61 LLVMValueRef condition, in lp_build_assert()
/external/mesa3d/src/mesa/program/
Dprogram_lexer.l43 #define return_token_or_IDENTIFIER(condition, token) \ argument
52 #define return_token_or_DOT(condition, token) \ argument
63 #define return_opcode(condition, token, opcode, len) \ argument
/external/chromium_org/third_party/mesa/src/src/mesa/program/
Dprogram_lexer.l43 #define return_token_or_IDENTIFIER(condition, token) \ argument
52 #define return_token_or_DOT(condition, token) \ argument
63 #define return_opcode(condition, token, opcode, len) \ argument
/external/smack/src/com/kenai/jbosh/
DTerminalBindingCondition.java119 final String condition, in TerminalBindingCondition()
129 final String condition, in create()
138 final String condition, in createWithCode()
/external/chromium_org/gin/test/
Dgtest.cc26 void ExpectTrue(bool condition, const std::string& description) { in ExpectTrue()
30 void ExpectFalse(bool condition, const std::string& description) { in ExpectFalse()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_thread.h96 static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) { in pthread_cond_destroy()
104 static INLINE int pthread_cond_init(pthread_cond_t *const condition, in pthread_cond_init()
119 static INLINE int pthread_cond_signal(pthread_cond_t *const condition) { in pthread_cond_signal()
132 static INLINE int pthread_cond_wait(pthread_cond_t *const condition, in pthread_cond_wait()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
Dvp9_thread.h96 static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) { in pthread_cond_destroy()
104 static INLINE int pthread_cond_init(pthread_cond_t *const condition, in pthread_cond_init()
119 static INLINE int pthread_cond_signal(pthread_cond_t *const condition) { in pthread_cond_signal()
132 static INLINE int pthread_cond_wait(pthread_cond_t *const condition, in pthread_cond_wait()
/external/webp/src/utils/
Dthread.c98 static int pthread_cond_destroy(pthread_cond_t* const condition) { in pthread_cond_destroy()
106 static int pthread_cond_init(pthread_cond_t* const condition, void* cond_attr) { in pthread_cond_init()
120 static int pthread_cond_signal(pthread_cond_t* const condition) { in pthread_cond_signal()
133 static int pthread_cond_wait(pthread_cond_t* const condition, in pthread_cond_wait()
/external/chromium_org/third_party/libwebp/utils/
Dthread.c98 static int pthread_cond_destroy(pthread_cond_t* const condition) { in pthread_cond_destroy()
106 static int pthread_cond_init(pthread_cond_t* const condition, void* cond_attr) { in pthread_cond_init()
120 static int pthread_cond_signal(pthread_cond_t* const condition) { in pthread_cond_signal()
133 static int pthread_cond_wait(pthread_cond_t* const condition, in pthread_cond_wait()

1234567891011