Home
last modified time | relevance | path

Searched defs:assertion (Results 1 – 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/wtf/
DAssertions.h146 #define ASSERT(assertion) ((void)0) argument
147 #define ASSERT_WITH_MESSAGE(assertion, ...) ((void)0) argument
149 #define ASSERT_UNUSED(variable, assertion) ((void)variable) argument
153 #define ASSERT(assertion) do \ argument
160 #define ASSERT_WITH_MESSAGE(assertion) ((void)0) argument
162 #define ASSERT_WITH_MESSAGE(assertion, ...) do \ argument
174 #define ASSERT_UNUSED(variable, assertion) ASSERT(assertion) argument
182 #define ASSERT_ARG(argName, assertion) ((void)0) argument
186 #define ASSERT_ARG(argName, assertion) do \ argument
DAssertions.cpp111 … WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion) in WTFReportAssertionFailure()
120 …lureWithMessage(const char* file, int line, const char* function, const char* assertion, const cha… in WTFReportAssertionFailureWithMessage()
131 …ilure(const char* file, int line, const char* function, const char* argName, const char* assertion) in WTFReportArgumentAssertionFailure()
/external/webkit/WebKit/mac/Misc/
DOldWebAssertions.c32 … WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion) in WebReportAssertionFailure()
/external/openssl/crypto/
Dcryptlib.c750 void OpenSSLDie(const char *file,int line,const char *assertion) in OpenSSLDie()