Home
last modified time | relevance | path

Searched refs:DescribeTo (Results 1 – 24 of 24) sorted by relevance

/third_party/googletest/googlemock/test/
Dgmock-cardinalities_test.cc121 c.DescribeTo(&ss); in TEST()
149 c.DescribeTo(&ss); in TEST()
166 AtLeast(1).DescribeTo(&ss1); in TEST()
171 c.DescribeTo(&ss2); in TEST()
176 AtLeast(3).DescribeTo(&ss3); in TEST()
204 c.DescribeTo(&ss); in TEST()
221 AtMost(1).DescribeTo(&ss1); in TEST()
226 c.DescribeTo(&ss2); in TEST()
231 AtMost(3).DescribeTo(&ss3); in TEST()
273 c.DescribeTo(&ss); in TEST()
[all …]
Dgmock-matchers_test.cc121 void DescribeTo(ostream* os) const override { *os << "is > " << rhs_; } in DescribeTo() function in testing::gmock_matchers_test::__anon3f1e227b0111::GreaterThanMatcher
218 void DescribeTo(ostream* os) const override { *os << "is an even number"; } in DescribeTo() function in testing::gmock_matchers_test::__anon3f1e227b0111::EvenMatcherImpl
246 void DescribeTo(ostream* os) const override { *os << "is an even number"; } in DescribeTo() function in testing::gmock_matchers_test::__anon3f1e227b0111::NewEvenMatcherImpl
429 void DescribeTo(ostream* os) const { *os << "g_bar or zero"; } in DescribeTo() function in testing::gmock_matchers_test::__anon3f1e227b0111::ReferencesBarOrIsZeroImpl
462 void DescribeTo(ostream* os) const { *os << "is even"; } in DescribeTo() function in testing::gmock_matchers_test::__anon3f1e227b0111::PolymorphicIsEvenImpl
4774 void DescribeTo(ostream* os) const { in TEST() function in testing::gmock_matchers_test::__anon3f1e227b0111::DivisibleByImpl
6550 void DescribeTo(ostream* os) const { in TEST() function in testing::gmock_matchers_test::__anon3f1e227b0111::IsHalfOfMatcher
7103 void DescribeTo(::std::ostream* /*os*/) const override {} in TEST() function in testing::gmock_matchers_test::__anon3f1e227b0111::LessThanMatcher
7164 void DescribeTo(ostream* os) const override { *os << "[DescribeTo]"; } in TEST() function in testing::gmock_matchers_test::__anon3f1e227b0111::PredicateFormatterFromMatcherTest::MockMatcher
8429 matcher.DescribeTo(&ss); in TEST()
[all …]
Dgmock-spec-builders_test.cc1968 void DescribeTo(::std::ostream* os) const override { in DescribeTo() function in __anonced32c960111::EvenNumberCardinality
/third_party/googletest/googlemock/include/gmock/
Dgmock-matchers.h437 void DescribeTo(::std::ostream* os) const override { in DescribeTo() function
438 source_matcher_.DescribeTo(os); in DescribeTo()
641 std::get<N - 1>(matchers).DescribeTo(os); in ExplainMatchFailuresTo()
750 void DescribeTo(std::ostream* os) const { *os << "is anything"; }
769 void DescribeTo(::std::ostream* os) const { *os << "is NULL"; }
785 void DescribeTo(::std::ostream* os) const { *os << "isn't NULL"; }
844 void DescribeTo(::std::ostream* os) const override {
941 void DescribeTo(::std::ostream* os) const {
1004 void DescribeTo(::std::ostream* os) const {
1059 void DescribeTo(::std::ostream* os) const {
[all …]
Dgmock-cardinalities.h82 virtual void DescribeTo(::std::ostream* os) const = 0;
123 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } in DescribeTo() function
Dgmock-spec-builders.h1082 extra_matcher_.DescribeTo(os); in MaybeDescribeExtraMatcherTo()
1138 extra_matcher_.DescribeTo(os); in ExplainMatchResultTo()
/third_party/mesa3d/src/gtest/include/gtest/
Dgtest-matchers.h125 virtual void DescribeTo(::std::ostream* os) const = 0;
135 DescribeTo(os); in DescribeNegationTo()
192 void DescribeTo(::std::ostream* os) const override { impl_->DescribeTo(os); } in DescribeTo() function
274 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } in DescribeTo() function
437 matcher.DescribeTo(&os);
477 virtual void DescribeTo(::std::ostream* os) const { impl_.DescribeTo(os); } in DescribeTo() function
551 void DescribeTo(::std::ostream* os) const override { in DescribeTo() function
652 void DescribeTo(::std::ostream* os) const { in DescribeTo() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Testing/Support/
DError.h53 void DescribeTo(std::ostream *OS) const override { in DescribeTo() function
55 Matcher.DescribeTo(OS); in DescribeTo()
112 void DescribeTo(std::ostream *OS) const override { in DescribeTo() function
116 Matcher->DescribeTo(OS); in DescribeTo()
DSupportHelpers.h81 void DescribeTo(std::ostream *OS) const override { in DescribeTo() function
83 ValueMatcher.DescribeTo(OS); in DescribeTo()
87 ValueMatcher.DescribeTo(OS); in DescribeNegationTo()
/third_party/googletest/googlemock/src/
Dgmock-matchers.cc290 matcher_describers_[0]->DescribeTo(os); in DescribeToImpl()
312 matcher_describers_[i]->DescribeTo(os); in DescribeToImpl()
353 matcher_describers_[i]->DescribeTo(os); in DescribeNegationToImpl()
390 matcher_describers_[mi]->DescribeTo(listener->stream()); in VerifyMatchMatrix()
Dgmock-cardinalities.cc84 void DescribeTo(::std::ostream* os) const override;
107 void BetweenCardinalityImpl::DescribeTo(::std::ostream* os) const { in DescribeTo() function in testing::__anone3a706290111::BetweenCardinalityImpl
Dgmock-spec-builders.cc192 cardinality().DescribeTo(os); in DescribeCallCountTo()
248 cardinality().DescribeTo(&ss); in CheckActionCountIfNotDone()
/third_party/googletest/googletest/include/gtest/
Dgtest-matchers.h118 virtual void DescribeTo(::std::ostream* os) const = 0;
128 DescribeTo(os); in DescribeNegationTo()
261 void DescribeTo(::std::ostream* os) const final { in DescribeTo() function
368 P::Get(m).DescribeTo(os); in DescribeImpl()
616 matcher.DescribeTo(&os);
656 void DescribeTo(::std::ostream* os) const override { impl_.DescribeTo(os); }
718 void DescribeTo(std::ostream* os) const {
830 void DescribeTo(::std::ostream* os) const {
/third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/
DWireTest.h43 void DescribeTo(std::ostream* os) const override {
87 void DescribeTo(std::ostream* os) const override {
/third_party/flutter/skia/third_party/externals/dawn/src/tests/unittests/wire/
DWireTest.h43 void DescribeTo(std::ostream* os) const override {
/third_party/abseil-cpp/absl/status/
Dstatusor_test.cc69 void DescribeTo(std::ostream* os) const override { in DescribeTo() function in __anonfcf9ccad0111::IsOkAndHoldsMatcherImpl
71 inner_matcher_.DescribeTo(os); in DescribeTo()
128 void DescribeTo(std::ostream* os) const override { *os << "is OK"; } in DescribeTo() function in __anonfcf9ccad0111::MonoIsOkMatcherImpl
/third_party/skia/third_party/externals/abseil-cpp/absl/status/
Dstatusor_test.cc72 void DescribeTo(std::ostream* os) const override { in DescribeTo() function in __anona79bafa20111::IsOkAndHoldsMatcherImpl
74 inner_matcher_.DescribeTo(os); in DescribeTo()
131 void DescribeTo(std::ostream* os) const override { *os << "is OK"; } in DescribeTo() function in __anona79bafa20111::MonoIsOkMatcherImpl
/third_party/cef/tools/distrib/gtest/
Dgtest.h6204 virtual void DescribeTo(::std::ostream* os) const = 0;
6214 DescribeTo(os);
6347 void DescribeTo(::std::ostream* os) const final {
6454 P::Get(m).DescribeTo(os);
6702 matcher.DescribeTo(&os);
6742 void DescribeTo(::std::ostream* os) const override { impl_.DescribeTo(os); }
6804 void DescribeTo(std::ostream* os) const {
6916 void DescribeTo(::std::ostream* os) const {
Dgtest-all.cc8830 matcher_.DescribeTo(&stream); in Passed()
/third_party/googletest/googletest/src/
Dgtest-death-test.cc599 matcher_.DescribeTo(&stream); in Passed()
/third_party/mesa3d/src/gtest/src/
Dgtest-death-test.cc598 matcher_.DescribeTo(&stream); in Passed()
/third_party/googletest/docs/
Dgmock_cook_book.md1328 void DescribeTo(std::ostream& os) const {
3551 matcher.DescribeTo(os);
3578 void DescribeTo(std::ostream* os) const {
3648 void DescribeTo(std::ostream* os) const { *os << "is not NULL"; }
3695 virtual void DescribeTo(std::ostream* os) const = 0;
3714 // that has three members MatchAndExplain(), DescribeTo(), and
3728 void DescribeTo(std::ostream* os) const { *os << "is not NULL"; }
3776 virtual void DescribeTo(std::ostream* os) const = 0;
3798 void DescribeTo(std::ostream* os) const {
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dlayout_test.cc1247 void DescribeTo(::std::ostream* os) const {} in DescribeTo() function in absl::container_internal::__anon0ebbc3660111::TupleMatcher
/third_party/abseil-cpp/absl/container/internal/
Dlayout_test.cc1183 void DescribeTo(::std::ostream* os) const {} in DescribeTo() function in absl::container_internal::__anon6d1dea310111::TupleMatcher