/external/rust/crates/grpcio-sys/grpc/third_party/upb/third_party/lunit/ |
D | lunit.lua | 193 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/ |
D | catch_run_context.cpp | 120 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 …]
|
D | catch_totals.cpp | 39 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/ |
D | TopicAssertions.dox | 11 \subsection RedefineAssert Redefining assertions 22 \subsection DisableAssert Disabling assertions 26 \section StaticAssert Static assertions 28 …assertions 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/ |
D | linalg_impl.py | 731 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/ |
D | catch_reporter_xml.cpp | 176 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()
|
D | catch_reporter_compact.cpp | 48 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()
|
D | catch_reporter_automake.hpp | 37 if (_testCaseStats.totals.assertions.allPassed()) { in testCaseEnded() 39 } else if (_testCaseStats.totals.assertions.allOk()) { in testCaseEnded()
|
D | catch_reporter_junit.cpp | 122 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()
|
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/ |
D | coverage.txt | 1 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/ |
D | testing.py | 84 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/ |
D | DebugMode.rst | 13 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/ |
D | Cargo.toml | 32 "assertions", 65 assertions = { path = "assertions" } 109 assertions = { path = "assertions" }
|
/external/libcxx/docs/DesignDocs/ |
D | DebugMode.rst | 13 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/igt-gpu-tools/tests/ |
D | kms_frontbuffer_tracking.c | 1930 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/ |
D | Cargo.toml | 8 assertions = { path = "../assertions" }
|
/external/crosvm/vhost/ |
D | Cargo.toml | 8 assertions = { path = "../assertions" }
|
/external/crosvm/data_model/ |
D | Cargo.toml | 9 assertions = { path = "../assertions" } # provided by ebuild
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_kill/ |
D | coverage.txt | 7 4 IMPLICITLY tested by assertions 6 and 7. 8 5 IMPLICITLY tested by assertions 6 and 7.
|
/external/catch2/single_include/catch2/ |
D | catch_reporter_automake.hpp | 37 if (_testCaseStats.totals.assertions.allPassed()) { in testCaseEnded() 39 } else if (_testCaseStats.totals.assertions.allOk()) { in testCaseEnded()
|
/external/rust/crates/clap/ |
D | Cargo.toml | 33 debug-assertions = false 41 debug-assertions = true 49 debug-assertions = false 57 debug-assertions = true
|
/external/rnnoise/ |
D | configure.ac | 68 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/crosvm/x86_64/ |
D | Cargo.toml | 12 assertions = { path = "../assertions" }
|
/external/libaom/libaom/third_party/googletest/ |
D | README.libaom | 10 assertions, user-defined assertions, death tests, fatal and non-fatal
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigprocmask/ |
D | coverage.txt | 5 2 IMPLICITLY tested by assertions 1-18 6 3 IMPLICITLY tested by assertions 4-6
|