HomeSort by relevance Sort by last modified time
    Searched refs:assertion (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/webkit/Source/WebKit/chromium/src/
WebCommon.cpp 38 void failedAssertion(const char* file, int line, const char* function, const char* assertion)
40 WTFReportAssertionFailure(file, line, function, assertion);
  /external/webkit/Source/WebKit/mac/Misc/
OldWebAssertions.c 29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion)
  /external/webkit/Source/WebKit/chromium/public/
WebCommon.h 103 WEBKIT_API void failedAssertion(const char* file, int line, const char* function, const char* assertion);
109 #define WEBKIT_ASSERT(assertion) ((void)0)
111 #define WEBKIT_ASSERT(assertion) do { \
112 if (!(assertion)) \
113 failedAssertion(__FILE__, __LINE__, __FUNCTION__, #assertion); \
  /external/webkit/Source/JavaScriptCore/wtf/
Assertions.h 149 WTF_EXPORT_PRIVATE void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion);
150 WTF_EXPORT_PRIVATE void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6);
151 WTF_EXPORT_PRIVATE void WTFReportArgumentAssertionFailure(const char* file, int line, const char* function, const char* argName, const char* assertion);
237 #define ASSERT(assertion) ((void)0)
243 #define ASSERT_UNUSED(variable, assertion) (assertUnused(variable))
245 #define ASSERT_UNUSED(variable, assertion) ((void)variable)
250 #define ASSERT(assertion) do \
251 if (!(assertion)) { \
252 WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion); \
262 #define ASSERT_UNUSED(variable, assertion) ASSERT(assertion
    [all...]
Assertions.cpp 196 void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion)
198 if (assertion)
199 printf_stderr_common("ASSERTION FAILED: %s\n", assertion);
205 void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...)
207 printf_stderr_common("ASSERTION FAILED: ");
212 printf_stderr_common("\n%s\n", assertion);
216 void WTFReportArgumentAssertionFailure(const char* file, int line, const char* function, const char* argName, const char* assertion)
218 printf_stderr_common("ARGUMENT BAD: %s, %s\n", argName, assertion);
  /external/guava/guava-testlib/src/com/google/common/testing/
RelationshipTester.java 38 private final RelationshipAssertion<T> assertion; field in class:RelationshipTester
40 RelationshipTester(RelationshipAssertion<T> assertion) {
41 this.assertion = checkNotNull(assertion);
79 assertion.assertRelated(item, related);
93 assertion.assertUnrelated(item, unrelated);
  /external/chromium/testing/gtest/scripts/
gen_gtest_pred_impl.py 113 // Implements a family of generic predicate assertion macros.
123 // This header implements a family of generic predicate assertion
278 // %(Arity)s predicate assertion macros.
529 "The predicate assertion didn't evaluate argument %s "
536 FAIL() << "The predicate assertion unexpactedly aborted the test.";
538 FAIL() << "The failed predicate assertion didn't abort the test "
572 """Returns the test for a predicate assertion macro.
575 use_format: true iff the assertion is a *_PRED_FORMAT*.
576 use_assert: true iff the assertion is a ASSERT_*.
577 expect_failure: true iff the assertion is expected to fail
    [all...]
  /external/gtest/scripts/
gen_gtest_pred_impl.py 113 // Implements a family of generic predicate assertion macros.
123 // This header implements a family of generic predicate assertion
278 // %(Arity)s predicate assertion macros.
529 "The predicate assertion didn't evaluate argument %s "
536 FAIL() << "The predicate assertion unexpactedly aborted the test.";
538 FAIL() << "The failed predicate assertion didn't abort the test "
572 """Returns the test for a predicate assertion macro.
575 use_format: true iff the assertion is a *_PRED_FORMAT*.
576 use_assert: true iff the assertion is a ASSERT_*.
577 expect_failure: true iff the assertion is expected to fail
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
gen_gtest_pred_impl.py 113 // Implements a family of generic predicate assertion macros.
123 // This header implements a family of generic predicate assertion
278 // %(Arity)s predicate assertion macros.
529 "The predicate assertion didn't evaluate argument %s "
536 FAIL() << "The predicate assertion unexpactedly aborted the test.";
538 FAIL() << "The failed predicate assertion didn't abort the test "
572 """Returns the test for a predicate assertion macro.
575 use_format: true iff the assertion is a *_PRED_FORMAT*.
576 use_assert: true iff the assertion is a ASSERT_*.
577 expect_failure: true iff the assertion is expected to fail
    [all...]
  /external/protobuf/gtest/scripts/
gen_gtest_pred_impl.py 113 // Implements a family of generic predicate assertion macros.
123 // This header implements a family of generic predicate assertion
280 // %(Arity)s predicate assertion macros.
532 "The predicate assertion didn't evaluate argument %s "
539 FAIL() << "The predicate assertion unexpactedly aborted the test.";
541 FAIL() << "The failed predicate assertion didn't abort the test "
575 """Returns the test for a predicate assertion macro.
578 use_format: true iff the assertion is a *_PRED_FORMAT*.
579 use_assert: true iff the assertion is a ASSERT_*.
580 expect_failure: true iff the assertion is expected to fail
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
LocPathIterator.java 391 assertion(false, "setNextPosition not supported in this iterator!"); method
418 assertion(false, "setShouldCacheNodes not supported by this iterater!"); method
440 assertion(false, "setCurrentPos not supported by this iterator!"); method
464 assertion(false, "size() not supported by this iterator!"); method
479 assertion(false, "item(int index) not supported by this iterator!"); method
498 assertion(false, "setItem not supported by this iterator!"); method
700 assertion(false, "This iterator can not reset!"); method
NodeSequence.java 185 assertion(nodeVector instanceof NodeVector, method
227 assertion(false, "Can not get a DTM Unless a DTMManager has been set!"); method
250 // an assertion here.
251 // assertion(false, "Can not get the root from a non-iterated NodeSequence!");
275 assertion(false, "Can not setRoot on a non-iterated NodeSequence!"); method
689 assertion(false, "Can not getAxis from a non-iterated node sequence!"); method
723 assertion(hasCache(), "addNodeInDocOrder must be done on a mutable sequence!");
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
window-close-crash.js 1 description("Tests the assertion that the GeolocationClient should not be updating<br>" +
  /external/libsepol/
Android.mk 4 src/assertion.c \
  /external/valgrind/main/drd/tests/
unit_vc.c 19 void VG_(assert_fail)(Bool isCore, const Char* assertion, const Char* file,
29 assertion);
  /external/apache-xml/src/main/java/org/apache/xpath/
Expression.java 404 * Tell the user of an assertion error, and probably throw an
408 * @param msg The assertion message, which should be informative.
414 public void assertion(boolean b, java.lang.String msg) method in class:Expression
476 assertion(n != this, "Can not parent an expression to itself!");
489 assertion(false, "exprAddChild method not implemented!"); method
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.h 70 #define MESSAGE_CHECK_BASE(assertion, connection) do \
71 if (!(assertion)) { \
72 ASSERT(assertion); \
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 366 assertion(false, "Could not find common ancestor!!!"); method
456 assertion(null != walker, "Walker should not be null!");
538 assertion((null != aw1) || (null != aw2), "Total match is incorrect!"); method
1286 protected static void assertion(boolean b, String msg) method in class:RedundentExprEliminator
1394 assertion(false, "unlink failed!!!"); method
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1201933.js 28 // Make sure this doesn't fail with an assertion
regress-1383.js 30 // hit an assertion in Code::ComputeFlags.
regress-1129.js 30 // This should not hit an assertion in debug mode.
regress-1145.js 33 // Should not hit an assertion in debug mode.
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebCookieJar.cpp 38 #define ASSERT(assertion, ...) do \
39 if (!(assertion)) { \
ChromiumIncludes.h 59 #define ASSERT(assertion) (void(0))
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 207 * Checks that an assertion is true.
209 * @throws IllegalArgumentException if the assertion is false, along with a suitable message
212 private void check(boolean assertion, String message, Voicemail voicemail) {
213 if (!assertion) {

Completed in 1246 milliseconds

1 2 3