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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCommon.cpp 38 void failedAssertion(const char* file, int line, const char* function, const char* assertion)
40 WTFReportAssertionFailure(file, line, function, assertion);
  /external/chromium_org/third_party/WebKit/Source/wtf/
Assertions.h 103 WTF_EXPORT void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion);
104 WTF_EXPORT void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6);
105 WTF_EXPORT void WTFReportArgumentAssertionFailure(const char* file, int line, const char* function, const char* argName, const char* assertion);
201 #define ASSERT(assertion) \
202 (!(assertion) ? \
203 (WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion), \
207 #define ASSERT_AT(assertion, file, line, function) \
208 (!(assertion) ? \
209 (WTFReportAssertionFailure(file, line, function, #assertion), \
218 #define ASSERT_UNUSED(variable, assertion) ASSERT(assertion
    [all...]
Assertions.cpp 204 void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion)
206 if (assertion)
207 printf_stderr_common("ASSERTION FAILED: %s\n", assertion);
213 void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...)
217 vprintf_stderr_with_prefix("ASSERTION FAILED: ", format, args);
219 printf_stderr_common("\n%s\n", assertion);
223 void WTFReportArgumentAssertionFailure(const char* file, int line, const char* function, const char* argName, const char* assertion)
225 printf_stderr_common("ARGUMENT BAD: %s, %s\n", argName, assertion);
343 // in case we hit an assertion
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebCommon.h 109 BLINK_COMMON_EXPORT void failedAssertion(const char* file, int line, const char* function, const char* assertion);
115 #define BLINK_ASSERT(assertion) ((void)0)
117 #define BLINK_ASSERT(assertion) do { \
118 if (!(assertion)) \
119 failedAssertion(__FILE__, __LINE__, __FUNCTION__, #assertion); \
  /external/chromium_org/third_party/sinonjs/src/
sinon-qunit.js 39 sinon.assert.pass = function (assertion) {
40 QUnit.ok(true, 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/llvm/test/MC/Mips/
mips-register-names-invalid.s 4 # $32 used to trigger an assertion instead of the usual error message due to
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
assert.hpp 93 namespace assertion
101 << "***** Internal Program Error - assertion (" << expr << ") failed in "
107 } // assertion
113 : ::boost::assertion::detail::assertion_failed_msg(#expr, msg, \
  /external/chromium_org/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/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!");
  /frameworks/testing/espresso/espresso-lib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/assertion/
ViewAssertionsTest.java 17 package com.google.android.apps.common.testing.ui.espresso.assertion;
19 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
20 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.selectedDescendantsMatch;
  /external/chromium_org/ui/webui/resources/js/
assert.js 6 * @fileoverview Assertion support.
10 * Simple common assertion API
19 var msg = 'Assertion failed';
  /external/libsepol/
Android.mk 4 src/assertion.c \
  /external/valgrind/main/drd/tests/
unit_vc.c 19 void VG_(assert_fail)(Bool isCore, const HChar* assertion, const HChar* file,
29 assertion);
  /frameworks/testing/espresso/espresso-lib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/action/
WindowOrderingIntegrationTest.java 22 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.doesNotExist;
23 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
ClearTextActionIntegrationTest.java 22 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
EditorActionIntegrationTest.java 22 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
ScrollToActionIntegrationTest.java 21 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
  /frameworks/testing/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/
MenuTest.java 23 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.doesNotExist;
24 import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.h 86 int rc_if_fail_helper(struct radeon_compiler * c, const char * file, int line, const char * assertion);
  /external/deqp/framework/delibs/debase/
deDefs.c 105 /* MessageBox(reason, "Assertion failed", MB_OK); */
130 fprintf(stderr, "Assertion '%s' failed at %s:%d\n", reason, file, line);
134 __android_log_print(ANDROID_LOG_ERROR, "delibs", "Assertion '%s' failed at %s:%d", reason, file, line);
137 # error Implement assertion function on your platform.
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 86 int rc_if_fail_helper(struct radeon_compiler * c, const char * file, int line, const char * assertion);

Completed in 808 milliseconds

1 2 3 4 5