Home
last modified time | relevance | path

Searched refs:assertions (Results 1 – 25 of 406) sorted by relevance

12345678910>>...17

/external/rust/crates/grpcio-sys/grpc/third_party/upb/third_party/lunit/
Dlunit.lua193 stats.assertions = stats.assertions + 1
200 stats.assertions = stats.assertions + 1
210 stats.assertions = stats.assertions + 1
220 stats.assertions = stats.assertions + 1
230 stats.assertions = stats.assertions + 1
240 stats.assertions = stats.assertions + 1
250 stats.assertions = stats.assertions + 1
266 stats.assertions = stats.assertions + 1
282 stats.assertions = stats.assertions + 1
298 stats.assertions = stats.assertions + 1
[all …]
/external/catch2/include/internal/
Dcatch_run_context.cpp120 deltaTotals.assertions.failed++; in runTest()
147 m_totals.assertions.passed++; in assertionEnded()
152 m_totals.assertions.failedButOk++; in assertionEnded()
154 m_totals.assertions.failed++; in assertionEnded()
176 bool RunContext::sectionStarted(SectionInfo const & sectionInfo, Counts & assertions) { in sectionStarted() argument
186 assertions = m_totals.assertions; in sectionStarted()
198 bool RunContext::testForMissingAssertions(Counts& assertions) { in testForMissingAssertions() argument
199 if (assertions.total() != 0) in testForMissingAssertions()
205 m_totals.assertions.failed++; in testForMissingAssertions()
206 assertions.failed++; in testForMissingAssertions()
[all …]
Dcatch_totals.cpp39 diff.assertions = assertions - other.assertions; in operator -()
45 assertions += other.assertions; in operator +=()
52 if( diff.assertions.failed > 0 ) in delta()
54 else if( diff.assertions.failedButOk > 0 ) in delta()
/external/eigen/doc/
DTopicAssertions.dox11 \subsection RedefineAssert Redefining assertions
22 \subsection DisableAssert Disabling assertions
26 \section StaticAssert Static assertions
28assertions are not standardized until C++11. However, in the Eigen library, there are many conditi…
35 Static assertions are defined in StaticAssert.h. If there is native static_assert, we use it. Other…
37 One can easily come up with static assertions without messages, such as:
67 \subsection DerivedStaticAssert Derived static assertions
77 …arly determined at compile time. We classify them into strict assertions and permissive assertions.
79 \subsubsection StrictAssertions Strict assertions
81 These assertions fail if the condition <b>may not</b> be met. For example, MatrixXd may not be a ve…
[all …]
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinalg_impl.py731 assertions = []
740 assertions.append(
743 return assertions
768 assertions = _maybe_validate_matrix(a, validate_args)
769 if assertions:
770 with ops.control_dependencies(assertions):
859 assertions = _maybe_validate_matrix(a, validate_args)
860 if assertions:
861 with ops.control_dependencies(assertions):
965 assertions = _lu_solve_assertions(lower_upper, perm, rhs, validate_args)
[all …]
/external/catch2/include/reporters/
Dcatch_reporter_xml.cpp176 e.writeAttribute( "successes", sectionStats.assertions.passed ); in sectionEnded()
177 e.writeAttribute( "failures", sectionStats.assertions.failed ); in sectionEnded()
178 e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk ); in sectionEnded()
190 e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() ); in testCaseEnded()
207 .writeAttribute( "successes", testGroupStats.totals.assertions.passed ) in testGroupEnded()
208 .writeAttribute( "failures", testGroupStats.totals.assertions.failed ) in testGroupEnded()
209 .writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk ); in testGroupEnded()
216 .writeAttribute( "successes", testRunStats.totals.assertions.passed ) in testRunEnded()
217 .writeAttribute( "failures", testRunStats.totals.assertions.failed ) in testRunEnded()
218 .writeAttribute( "expectedFailures", testRunStats.totals.assertions.failedButOk ); in testRunEnded()
Dcatch_reporter_compact.cpp48 totals.assertions.failed == totals.assertions.total() ? in printTotals()
49 bothOrAll(totals.assertions.failed) : std::string(); in printTotals()
54 pluralise(totals.assertions.failed, "assertion") << '.'; in printTotals()
55 } else if (totals.assertions.total() == 0) { in printTotals()
60 } else if (totals.assertions.failed) { in printTotals()
64 "failed " << pluralise(totals.assertions.failed, "assertion") << '.'; in printTotals()
70 " with " << pluralise(totals.assertions.passed, "assertion") << '.'; in printTotals()
Dcatch_reporter_junit.cpp122 xml.writeAttribute( "failures", stats.totals.assertions.failed-unexpectedExceptions ); in writeGroup()
123 xml.writeAttribute( "tests", stats.totals.assertions.total() ); in writeGroup()
183 if( !sectionNode.assertions.empty() || in writeSection()
212 for( auto const& assertion : sectionNode.assertions ) in writeAssertions()
248 if (stats.totals.assertions.total() > 0) { in writeAssertion()
Dcatch_reporter_automake.hpp37 if (_testCaseStats.totals.assertions.allPassed()) { in testCaseEnded()
39 } else if (_testCaseStats.totals.assertions.allOk()) { in testCaseEnded()
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
Dcoverage.txt1 This document explains why certain assertions were not tested.
5 6 through 12 - Did not test RTS assertions.
10 The assertions:
/external/tensorflow/tensorflow/python/autograph/utils/
Dtesting.py84 self.assertions = []
89 targets = [args for _, args in self.assertions]
108 for (assertion, _), values in zip(self.assertions, actuals):
157 self.assertions.append((super().assertEqual, list(args)))
160 self.assertions.append((super().assertDictEqual, list(args)))
/external/llvm-project/libcxx/docs/DesignDocs/
DDebugMode.rst13 Libc++ provides a debug mode that enables assertions meant to detect incorrect
14 usage of the standard library. By default these assertions are disabled but
21 This macro is used to enable assertions and iterator debugging checks within
27 assertions. Defining ``_LIBCPP_DEBUG`` to ``1`` enables "iterator debugging"
28 which provides additional assertions about the validity of iterators used by
/external/libcxx/docs/DesignDocs/
DDebugMode.rst13 Libc++ provides a debug mode that enables assertions meant to detect incorrect
14 usage of the standard library. By default these assertions are disabled but
21 This macro is used to enable assertions and iterator debugging checks within
27 assertions. Defining ``_LIBCPP_DEBUG`` to ``1`` enables "iterator debugging"
28 which provides additional assertions about the validity of iterators used by
/external/crosvm/
DCargo.toml32 "assertions",
65 assertions = { path = "assertions" }
109 assertions = { path = "assertions" }
/external/igt-gpu-tools/tests/
Dkms_frontbuffer_tracking.c1930 int assertions = 0; in draw_subtest() local
1938 assertions |= ASSERT_LAST_ACTION_CHANGED; in draw_subtest()
1940 assertions |= ASSERT_NO_ACTION_CHANGE; in draw_subtest()
1944 assertions |= ASSERT_NO_ACTION_CHANGE; in draw_subtest()
1963 assertions |= ASSERT_PSR_DISABLED; in draw_subtest()
1970 assertions |= ASSERT_DRRS_LOW; in draw_subtest()
1979 do_assertions(assertions); in draw_subtest()
2005 int assertions = 0; in multidraw_subtest() local
2048 assertions = used_method != IGT_DRAW_MMAP_GTT ? in multidraw_subtest()
2053 assertions |= ASSERT_PSR_DISABLED; in multidraw_subtest()
[all …]
/external/crosvm/usb_util/
DCargo.toml8 assertions = { path = "../assertions" }
/external/crosvm/vhost/
DCargo.toml8 assertions = { path = "../assertions" }
/external/crosvm/data_model/
DCargo.toml9 assertions = { path = "../assertions" } # provided by ebuild
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_kill/
Dcoverage.txt7 4 IMPLICITLY tested by assertions 6 and 7.
8 5 IMPLICITLY tested by assertions 6 and 7.
/external/rnnoise/
Dconfigure.ac68 AC_ARG_ENABLE([assertions], optenable
69 AS_HELP_STRING([--enable-assertions], [Enable assertions in code]),,
73 AC_DEFINE([OP_ENABLE_ASSERTIONS], [1], [Enable assertions in code])
/external/rust/crates/clap/
DCargo.toml33 debug-assertions = false
41 debug-assertions = true
49 debug-assertions = false
57 debug-assertions = true
/external/catch2/single_include/catch2/
Dcatch_reporter_automake.hpp37 if (_testCaseStats.totals.assertions.allPassed()) { in testCaseEnded()
39 } else if (_testCaseStats.totals.assertions.allOk()) { in testCaseEnded()
/external/crosvm/x86_64/
DCargo.toml12 assertions = { path = "../assertions" }
/external/libaom/libaom/third_party/googletest/
DREADME.libaom10 assertions, user-defined assertions, death tests, fatal and non-fatal
/external/tensorflow/tensorflow/python/ops/distributions/
Dutil.py95 assertions = [
100 assertions += [
105 return control_flow_ops.with_dependencies(assertions, x)
445 assertions = []
447 assertions += [
455 assertions += [
466 assertions += [
475 assertions += [
483 if not assertions:
485 return control_flow_ops.with_dependencies(assertions, x)
[all …]

12345678910>>...17