/external/webkit/Source/JavaScriptCore/wtf/ |
D | Assertions.h | 149 …WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion); 150 …thMessage(const char* file, int line, const char* function, const char* assertion, const char* for… 151 …lure(const char* file, int line, const char* function, const char* argName, const char* assertion); 237 #define ASSERT(assertion) ((void)0) argument 243 #define ASSERT_UNUSED(variable, assertion) (assertUnused(variable)) argument 245 #define ASSERT_UNUSED(variable, assertion) ((void)variable) argument 250 #define ASSERT(assertion) do \ argument 251 if (!(assertion)) { \ 252 WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion); \ 262 #define ASSERT_UNUSED(variable, assertion) ASSERT(assertion) argument [all …]
|
D | Assertions.cpp | 196 … WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion) in WTFReportAssertionFailure() argument 198 if (assertion) in WTFReportAssertionFailure() 199 printf_stderr_common("ASSERTION FAILED: %s\n", assertion); in WTFReportAssertionFailure() 205 …thMessage(const char* file, int line, const char* function, const char* assertion, const char* for… in WTFReportAssertionFailureWithMessage() argument 212 printf_stderr_common("\n%s\n", assertion); in WTFReportAssertionFailureWithMessage() 216 …ilure(const char* file, int line, const char* function, const char* argName, const char* assertion) in WTFReportArgumentAssertionFailure() argument 218 printf_stderr_common("ARGUMENT BAD: %s, %s\n", argName, assertion); in WTFReportArgumentAssertionFailure()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebCommon.h | 103 …_API void failedAssertion(const char* file, int line, const char* function, const char* assertion); 109 #define WEBKIT_ASSERT(assertion) ((void)0) argument 111 #define WEBKIT_ASSERT(assertion) do { \ argument 112 if (!(assertion)) \ 113 failedAssertion(__FILE__, __LINE__, __FUNCTION__, #assertion); \
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
D | RelationshipTester.java | 38 private final RelationshipAssertion<T> assertion; field in RelationshipTester 40 RelationshipTester(RelationshipAssertion<T> assertion) { in RelationshipTester() argument 41 this.assertion = checkNotNull(assertion); in RelationshipTester() 79 assertion.assertRelated(item, related); in assertRelated() 93 assertion.assertUnrelated(item, unrelated); in assertUnrelated()
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | LocPathIterator.java | 391 assertion(false, "setNextPosition not supported in this iterator!"); in setNextPosition() 418 assertion(false, "setShouldCacheNodes not supported by this iterater!"); in setShouldCacheNodes() 440 assertion(false, "setCurrentPos not supported by this iterator!"); in setCurrentPos() 464 assertion(false, "size() not supported by this iterator!"); in size() 479 assertion(false, "item(int index) not supported by this iterator!"); in item() 498 assertion(false, "setItem not supported by this iterator!"); in setItem() 700 assertion(false, "This iterator can not reset!"); in reset()
|
D | NodeSequence.java | 185 assertion(nodeVector instanceof NodeVector, in NodeSequence() 227 assertion(false, "Can not get a DTM Unless a DTMManager has been set!"); in getDTM() 275 assertion(false, "Can not setRoot on a non-iterated NodeSequence!"); in setRoot() 689 assertion(false, "Can not getAxis from a non-iterated node sequence!"); in getAxis() 723 assertion(hasCache(), "addNodeInDocOrder must be done on a mutable sequence!"); in addNodeInDocOrder()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebCommon.cpp | 38 void failedAssertion(const char* file, int line, const char* function, const char* assertion) in failedAssertion() argument 40 WTFReportAssertionFailure(file, line, function, assertion); in failedAssertion()
|
/external/webkit/Source/WebKit/mac/Misc/ |
D | OldWebAssertions.c | 29 …WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion); 32 … WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion) in WebReportAssertionFailure() argument
|
/external/libvpx/libvpx/third_party/googletest/src/scripts/ |
D | gen_gtest_pred_impl.py | 595 assertion = assrt + '_PRED' 599 assertion += '_FORMAT' 603 assertion += '%(n)s' % DEFS 647 'assertion' : assertion, 662 indent = (len(assertion) + 3)*' '
|
/external/protobuf/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 598 assertion = assrt + '_PRED' 602 assertion += '_FORMAT' 606 assertion += '%(n)s' % DEFS 650 'assertion' : assertion, 665 indent = (len(assertion) + 3)*' '
|
/external/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 595 assertion = assrt + '_PRED' 599 assertion += '_FORMAT' 603 assertion += '%(n)s' % DEFS 647 'assertion' : assertion, 662 indent = (len(assertion) + 3)*' '
|
/external/chromium/testing/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 595 assertion = assrt + '_PRED' 599 assertion += '_FORMAT' 603 assertion += '%(n)s' % DEFS 647 'assertion' : assertion, 662 indent = (len(assertion) + 3)*' '
|
/external/eigen/doc/ |
D | D11_UnalignedArrayAssert.dox | 3 /** \page TopicUnalignedArrayAssert Explanation of the assertion on unaligned arrays 5 Hello! You are seeing this webpage because your program terminated on an assertion failure like thi… 10 Assertion `(reinterpret_cast<size_t>(array) & 0xf) == 0 && "this assertion 28 First of all, you need to find out where in your own code this assertion was triggered from. At fir… 84 …r people using GCC on Windows (like MinGW or TDM-GCC). If you have this assertion failure in an in… 98 \section explanation General explanation of this assertion 104 …ses where these alignment settings get overridden: they are the possible causes for this assertion.
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | Expression.java | 414 public void assertion(boolean b, java.lang.String msg) in assertion() method in Expression 476 assertion(n != this, "Can not parent an expression to itself!"); in exprSetParent() 489 assertion(false, "exprAddChild method not implemented!"); in exprAddChild()
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | RedundentExprEliminator.java | 366 assertion(false, "Could not find common ancestor!!!"); in findCommonAncestor() 456 assertion(null != walker, "Walker should not be null!"); in changePartToRef() 538 assertion((null != aw1) || (null != aw2), "Total match is incorrect!"); in stepsEqual() 1272 assertion(owner.getExpression() == path, "owner.getExpression() != path!!!"); in validateNewAddition() 1278 assertion(ew != owner, "duplicate owner on the list!!!"); in validateNewAddition() 1279 assertion(ew.getExpression() != path, "duplicate expression on the list!!!"); in validateNewAddition() 1286 protected static void assertion(boolean b, String msg) in assertion() method in RedundentExprEliminator 1324 assertion(null != m_exprOwner, "exprOwner can not be null!"); in MultistepExprHolder() 1394 assertion(false, "unlink failed!!!"); in unlink()
|
/external/webkit/LayoutTests/http/tests/appcache/ |
D | document-write-html-element-2-expected.txt | 1 SUCCESS, no assertion failure
|
/external/webkit/LayoutTests/fast/dom/NodeList/ |
D | adoptNode-node-list-cache-expected.txt | 2 TEST PASSED - Unless an assertion or crash happens soon.
|
/external/webkit/LayoutTests/storage/ |
D | empty-statement-expected.txt | 1 Executed an empty statement. If you didn't see a crash or assertion, the test passed.
|
D | change-version-no-crash-on-preflight-failure-expected.txt | 1 This test verifies that no assertion is triggered when changeVersion()'s preflight step fails.
|
/external/chromium/googleurl/base/ |
D | README.txt | 1 These files contain some shared code. You can define your own assertion macros
|
/external/webkit/LayoutTests/fast/encoding/GBK/ |
D | close-gbk-converter-expected.txt | 3 PASS if there is no assertion failure.
|
/external/webkit/LayoutTests/fast/dom/HTMLFormElement/ |
D | adopt-assertion-expected.txt | 3 The test passed if the assertion did not fail.
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
D | ChromiumIncludes.h | 59 #define ASSERT(assertion) (void(0)) argument
|
/external/llvm/test/CodeGen/Generic/ |
D | 2002-04-14-UnexpectedUnsignedType.ll | 4 ; SparcInstrInfo.cpp:103: failed assertion `0 && "Unexpected unsigned type"'
|
/external/llvm/test/Assembler/ |
D | 2003-04-15-ConstantInitAssertion.ll | 4 ; This should cause an assembler error, not an assertion failure!
|