Searched refs:MatchAndExplain (Results 1 - 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_matchers.cc24 bool HloMatcher::MatchAndExplain( function in class:xla::testing::HloMatcher
45 if (!operands_[index].MatchAndExplain(operands[index], &inner_listener)) {
76 bool HloParameterMatcher::MatchAndExplain( function in class:xla::testing::HloParameterMatcher
79 if (!HloMatcher::MatchAndExplain(instruction, listener)) {
91 bool HloGetTupleElementMatcher::MatchAndExplain( function in class:xla::testing::HloGetTupleElementMatcher
94 if (!HloMatcher::MatchAndExplain(instruction, listener)) {
111 bool HloCustomCallMatcher::MatchAndExplain( function in class:xla::testing::HloCustomCallMatcher
114 if (!HloMatcher::MatchAndExplain(instruction, listener)) {
H A Dhlo_matchers.h31 bool MatchAndExplain(const HloInstruction* instruction,
48 bool MatchAndExplain(const HloInstruction* instruction,
64 bool MatchAndExplain(const HloInstruction* instruction,
81 bool MatchAndExplain(const HloInstruction* instruction,
H A Dhlo_matchers_test.cc36 EXPECT_FALSE(m.MatchAndExplain(t, &listener));
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h94 // the match result. A matcher's MatchAndExplain() method can use
117 // example, the MatchAndExplain() method of the Pointee(...) matcher
128 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
195 bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::MatcherBase
196 return impl_->MatchAndExplain(x, listener);
202 return MatchAndExplain(x, &dummy);
216 MatchAndExplain(x, &listener);
312 // bool MatchAndExplain(const Value& value,
348 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::PolymorphicMatcher::MonomorphicImpl
349 return impl_.MatchAndExplain(
463 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::MatcherCastImpl::Impl
714 virtual bool MatchAndExplain( function in class:testing::internal::AnyMatcherImpl
798 bool MatchAndExplain(const Pointer& p, function in class:testing::internal::IsNullMatcher
814 bool MatchAndExplain(const Pointer& p, function in class:testing::internal::NotNullMatcher
872 virtual bool MatchAndExplain( function in class:testing::internal::RefMatcher::Impl
946 bool MatchAndExplain(ConstCharPointer s, function in class:testing::internal::StrEqualityMatcher
954 bool MatchAndExplain(const StringType& s, function in class:testing::internal::StrEqualityMatcher
1000 bool MatchAndExplain(ConstCharPointer s, function in class:testing::internal::HasSubstrMatcher
1005 bool MatchAndExplain(const StringType& s, function in class:testing::internal::HasSubstrMatcher
1041 bool MatchAndExplain(ConstCharPointer s, function in class:testing::internal::StartsWithMatcher
1046 bool MatchAndExplain(const StringType& s, function in class:testing::internal::StartsWithMatcher
1081 bool MatchAndExplain(ConstCharPointer s, function in class:testing::internal::EndsWithMatcher
1086 bool MatchAndExplain(const StringType& s, function in class:testing::internal::EndsWithMatcher
1120 bool MatchAndExplain(const char* s, function in class:testing::internal::MatchesRegexMatcher
1125 bool MatchAndExplain(const internal::string& s, function in class:testing::internal::MatchesRegexMatcher
1214 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::NotMatcherImpl
1278 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::BothOfMatcherImpl
1365 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::EitherOfMatcherImpl
1439 bool MatchAndExplain(T& x, // NOLINT function in class:testing::internal::TrulyMatcher
1574 virtual bool MatchAndExplain(T value, function in class:testing::internal::FloatingEqMatcher::Impl
1694 virtual bool MatchAndExplain(Pointer pointer, function in class:testing::internal::PointeeMatcher::Impl
1734 bool MatchAndExplain(const T& value, MatchResultListener* listener) const { function in class:testing::internal::FieldMatcher
1795 bool MatchAndExplain(const T&value, MatchResultListener* listener) const { function in class:testing::internal::PropertyMatcher
1899 virtual bool MatchAndExplain(T obj, MatchResultListener* listener) const { function in class:testing::internal::ResultOfMatcher::Impl
1962 bool MatchAndExplain(const LhsContainer& lhs, function in class:testing::internal::ContainerEqMatcher
2061 virtual bool MatchAndExplain(LhsContainer lhs, function in class:testing::internal::WhenSortedByMatcher::Impl
2160 virtual bool MatchAndExplain(LhsContainer lhs, function in class:testing::internal::PointwiseMatcher::Impl
2273 virtual bool MatchAndExplain(Container container, function in class:testing::internal::ContainsMatcherImpl
2302 virtual bool MatchAndExplain(Container container, function in class:testing::internal::EachMatcherImpl
2362 virtual bool MatchAndExplain(PairType key_value, function in class:testing::internal::KeyMatcherImpl
2444 virtual bool MatchAndExplain(PairType a_pair, function in class:testing::internal::PairMatcherImpl
2574 virtual bool MatchAndExplain(Container container, function in class:testing::internal::ElementsAreMatcherImpl
[all...]
H A Dgmock-generated-matchers.h233 virtual bool MatchAndExplain(ArgsTuple args, function in class:testing::internal::ArgsMatcherImpl
243 const bool match = inner_matcher_.MatchAndExplain(selected_args,
1420 virtual bool MatchAndExplain(\
1454 bool name##Matcher::gmock_Impl<arg_type>::MatchAndExplain(\
1468 virtual bool MatchAndExplain(\
1506 bool name##MatcherP<p0##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
1520 virtual bool MatchAndExplain(\
1563 p1##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
1577 virtual bool MatchAndExplain(\
1623 p2##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
[all...]
H A Dgmock-spec-builders.h1112 if (!extra_matcher_.MatchAndExplain(args, &listener)) {
/external/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h101 // the match result. A matcher's MatchAndExplain() method can use
149 // MatchAndExplain() method of the Pointee(...) matcher should
152 // Implementations of MatchAndExplain() should add an explanation of
176 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
256 bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::MatcherBase
257 return impl_->MatchAndExplain(x, listener);
263 return MatchAndExplain(x, &dummy);
277 MatchAndExplain(x, &listener);
425 // bool MatchAndExplain(const Value& value,
461 virtual bool MatchAndExplain( function in class:testing::PolymorphicMatcher::MonomorphicImpl
576 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::MatcherCastImpl::Impl
861 virtual bool MatchAndExplain( function in class:testing::internal::AnyMatcherImpl
906 virtual bool MatchAndExplain( function in class:testing::internal::ComparisonBase::Impl
980 bool MatchAndExplain(const Pointer& p, function in class:testing::internal::IsNullMatcher
1000 bool MatchAndExplain(const Pointer& p, function in class:testing::internal::NotNullMatcher
1062 virtual bool MatchAndExplain( function in class:testing::internal::RefMatcher::Impl
1138 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::StrEqualityMatcher
1150 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::StrEqualityMatcher
1198 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::HasSubstrMatcher
1207 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::HasSubstrMatcher
1245 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::StartsWithMatcher
1254 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::StartsWithMatcher
1291 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::EndsWithMatcher
1300 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::EndsWithMatcher
1337 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::MatchesRegexMatcher
1346 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::MatchesRegexMatcher
1400 virtual bool MatchAndExplain( function in class:testing::internal::PairMatchBase::Impl
1449 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::NotMatcherImpl
1513 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::BothOfMatcherImpl
1685 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::EitherOfMatcherImpl
1766 bool MatchAndExplain(T& x, // NOLINT function in class:testing::internal::TrulyMatcher
1921 virtual bool MatchAndExplain(T value, function in class:testing::internal::FloatingEqMatcher::Impl
2081 virtual bool MatchAndExplain(Pointer pointer, function in class:testing::internal::PointeeMatcher::Impl
2151 bool MatchAndExplain(From from, MatchResultListener* listener) const { function in class:testing::internal::WhenDynamicCastToMatcher
2167 bool MatchAndExplain(From& from, MatchResultListener* listener) const { function in class:testing::internal::WhenDynamicCastToMatcher
2198 bool MatchAndExplain(const T& value, MatchResultListener* listener) const { function in class:testing::internal::FieldMatcher
2261 bool MatchAndExplain(const T&value, MatchResultListener* listener) const { function in class:testing::internal::PropertyMatcher
2372 virtual bool MatchAndExplain(T obj, MatchResultListener* listener) const { function in class:testing::internal::ResultOfMatcher::Impl
2430 virtual bool MatchAndExplain(Container container, function in class:testing::internal::SizeIsMatcher::Impl
2484 virtual bool MatchAndExplain(Container container, function in class:testing::internal::BeginEndDistanceIsMatcher::Impl
2549 bool MatchAndExplain(const LhsContainer& lhs, function in class:testing::internal::ContainerEqMatcher
2651 virtual bool MatchAndExplain(LhsContainer lhs, function in class:testing::internal::WhenSortedByMatcher::Impl
2751 virtual bool MatchAndExplain(LhsContainer lhs, function in class:testing::internal::PointwiseMatcher::Impl
2864 virtual bool MatchAndExplain(Container container, function in class:testing::internal::ContainsMatcherImpl
2893 virtual bool MatchAndExplain(Container container, function in class:testing::internal::EachMatcherImpl
2953 virtual bool MatchAndExplain(PairType key_value, function in class:testing::internal::KeyMatcherImpl
3035 virtual bool MatchAndExplain(PairType a_pair, function in class:testing::internal::PairMatcherImpl
3163 virtual bool MatchAndExplain(Container container, function in class:testing::internal::ElementsAreMatcherImpl
3377 virtual bool MatchAndExplain(Container container, function in class:testing::internal::UnorderedElementsAreMatcherImpl
3592 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::BoundSecondMatcher::Impl
[all...]
H A Dgmock-generated-matchers.h223 virtual bool MatchAndExplain(ArgsTuple args, function in class:testing::internal::ArgsMatcherImpl
233 const bool match = inner_matcher_.MatchAndExplain(selected_args,
1390 virtual bool MatchAndExplain(\
1425 bool name##Matcher::gmock_Impl<arg_type>::MatchAndExplain(\
1439 virtual bool MatchAndExplain(\
1478 bool name##MatcherP<p0##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
1492 virtual bool MatchAndExplain(\
1536 p1##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
1550 virtual bool MatchAndExplain(\
1597 p2##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
[all...]
H A Dgmock-spec-builders.h1122 if (!extra_matcher_.MatchAndExplain(args, &listener)) {
/external/v8/testing/gmock/include/gmock/
H A Dgmock-matchers.h101 // the match result. A matcher's MatchAndExplain() method can use
149 // MatchAndExplain() method of the Pointee(...) matcher should
152 // Implementations of MatchAndExplain() should add an explanation of
176 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
256 bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::MatcherBase
257 return impl_->MatchAndExplain(x, listener);
263 return MatchAndExplain(x, &dummy);
277 MatchAndExplain(x, &listener);
425 // bool MatchAndExplain(const Value& value,
461 virtual bool MatchAndExplain( function in class:testing::PolymorphicMatcher::MonomorphicImpl
576 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::MatcherCastImpl::Impl
861 virtual bool MatchAndExplain( function in class:testing::internal::AnyMatcherImpl
906 virtual bool MatchAndExplain( function in class:testing::internal::ComparisonBase::Impl
980 bool MatchAndExplain(const Pointer& p, function in class:testing::internal::IsNullMatcher
1000 bool MatchAndExplain(const Pointer& p, function in class:testing::internal::NotNullMatcher
1062 virtual bool MatchAndExplain( function in class:testing::internal::RefMatcher::Impl
1138 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::StrEqualityMatcher
1150 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::StrEqualityMatcher
1198 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::HasSubstrMatcher
1207 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::HasSubstrMatcher
1245 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::StartsWithMatcher
1254 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::StartsWithMatcher
1291 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::EndsWithMatcher
1300 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::EndsWithMatcher
1337 bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { function in class:testing::internal::MatchesRegexMatcher
1346 bool MatchAndExplain(const MatcheeStringType& s, function in class:testing::internal::MatchesRegexMatcher
1400 virtual bool MatchAndExplain( function in class:testing::internal::PairMatchBase::Impl
1449 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::NotMatcherImpl
1513 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::BothOfMatcherImpl
1685 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::EitherOfMatcherImpl
1766 bool MatchAndExplain(T& x, // NOLINT function in class:testing::internal::TrulyMatcher
1921 virtual bool MatchAndExplain(T value, function in class:testing::internal::FloatingEqMatcher::Impl
2081 virtual bool MatchAndExplain(Pointer pointer, function in class:testing::internal::PointeeMatcher::Impl
2151 bool MatchAndExplain(From from, MatchResultListener* listener) const { function in class:testing::internal::WhenDynamicCastToMatcher
2167 bool MatchAndExplain(From& from, MatchResultListener* listener) const { function in class:testing::internal::WhenDynamicCastToMatcher
2198 bool MatchAndExplain(const T& value, MatchResultListener* listener) const { function in class:testing::internal::FieldMatcher
2259 bool MatchAndExplain(const T&value, MatchResultListener* listener) const { function in class:testing::internal::PropertyMatcher
2370 virtual bool MatchAndExplain(T obj, MatchResultListener* listener) const { function in class:testing::internal::ResultOfMatcher::Impl
2428 virtual bool MatchAndExplain(Container container, function in class:testing::internal::SizeIsMatcher::Impl
2482 virtual bool MatchAndExplain(Container container, function in class:testing::internal::BeginEndDistanceIsMatcher::Impl
2547 bool MatchAndExplain(const LhsContainer& lhs, function in class:testing::internal::ContainerEqMatcher
2649 virtual bool MatchAndExplain(LhsContainer lhs, function in class:testing::internal::WhenSortedByMatcher::Impl
2749 virtual bool MatchAndExplain(LhsContainer lhs, function in class:testing::internal::PointwiseMatcher::Impl
2862 virtual bool MatchAndExplain(Container container, function in class:testing::internal::ContainsMatcherImpl
2891 virtual bool MatchAndExplain(Container container, function in class:testing::internal::EachMatcherImpl
2951 virtual bool MatchAndExplain(PairType key_value, function in class:testing::internal::KeyMatcherImpl
3033 virtual bool MatchAndExplain(PairType a_pair, function in class:testing::internal::PairMatcherImpl
3161 virtual bool MatchAndExplain(Container container, function in class:testing::internal::ElementsAreMatcherImpl
3376 virtual bool MatchAndExplain(Container container, function in class:testing::internal::UnorderedElementsAreMatcherImpl
3591 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::BoundSecondMatcher::Impl
[all...]
H A Dgmock-generated-matchers.h223 virtual bool MatchAndExplain(ArgsTuple args, function in class:testing::internal::ArgsMatcherImpl
233 const bool match = inner_matcher_.MatchAndExplain(selected_args,
1389 virtual bool MatchAndExplain(\
1423 bool name##Matcher::gmock_Impl<arg_type>::MatchAndExplain(\
1437 virtual bool MatchAndExplain(\
1475 bool name##MatcherP<p0##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
1489 virtual bool MatchAndExplain(\
1532 p1##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
1546 virtual bool MatchAndExplain(\
1592 p2##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
[all...]
H A Dgmock-spec-builders.h1120 if (!extra_matcher_.MatchAndExplain(args, &listener)) {
/external/v8/testing/
H A Dgmock-support.h48 virtual bool MatchAndExplain(T value, MatchResultListener* listener) const { function in class:testing::internal::CaptureEqMatcher
/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc150 virtual bool MatchAndExplain(int lhs, function in class:testing::gmock_matchers_test::GreaterThanMatcher
233 virtual bool MatchAndExplain(int x, function in class:testing::gmock_matchers_test::EvenMatcherImpl
252 // Tests implementing a monomorphic matcher using MatchAndExplain().
256 virtual bool MatchAndExplain(int x, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::NewEvenMatcherImpl
329 // Tests Matcher<T>::MatchAndExplain().
330 TEST(MatcherTest, MatchAndExplain) {
333 EXPECT_TRUE(m.MatchAndExplain(42, &listener1));
337 EXPECT_FALSE(m.MatchAndExplain(-9, &listener2));
379 bool MatchAndExplain(const T& x, function in class:testing::gmock_matchers_test::ReferencesBarOrIsZeroImpl
414 // Tests implementing a polymorphic matcher using MatchAndExplain()
425 bool MatchAndExplain(const T& x, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::PolymorphicIsEvenImpl
3503 bool MatchAndExplain(const T& n, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::DivisibleByImpl
4082 bool MatchAndExplain(const tuple<T1, T2>& a_pair, function in class:testing::gmock_matchers_test::IsHalfOfMatcher
[all...]
H A Dgmock-generated-matchers_test.cc229 virtual bool MatchAndExplain(tuple<char, int> value, function in class:__anon7603::LessThanMatcher
262 virtual bool MatchAndExplain(int lhs, function in class:__anon7603::GreaterThanMatcher
/external/nos/host/android/hals/keymaster/test/
H A Dimport_key_test.cpp161 virtual bool MatchAndExplain(const ImportKeyRequest& request, function in class:ImportKeyRequestMatcher
H A Dimport_wrapped_key_test.cpp179 virtual bool MatchAndExplain(const ImportWrappedKeyRequest& request, function in class:ImportWrappedKeyRequestMatcher
/external/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc230 virtual bool MatchAndExplain(tuple<char, int> value, function in class:__anon7691::LessThanMatcher
263 virtual bool MatchAndExplain(int lhs, function in class:__anon7691::GreaterThanMatcher
H A Dgmock-matchers_test.cc175 virtual bool MatchAndExplain(int lhs, function in class:testing::gmock_matchers_test::GreaterThanMatcher
264 virtual bool MatchAndExplain(int x, function in class:testing::gmock_matchers_test::EvenMatcherImpl
283 // Tests implementing a monomorphic matcher using MatchAndExplain().
287 virtual bool MatchAndExplain(int x, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::NewEvenMatcherImpl
360 // Tests Matcher<T>::MatchAndExplain().
361 TEST(MatcherTest, MatchAndExplain) {
364 EXPECT_TRUE(m.MatchAndExplain(42, &listener1));
368 EXPECT_FALSE(m.MatchAndExplain(-9, &listener2));
448 bool MatchAndExplain(const T& x, function in class:testing::gmock_matchers_test::ReferencesBarOrIsZeroImpl
483 // Tests implementing a polymorphic matcher using MatchAndExplain()
494 bool MatchAndExplain(const T& x, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::PolymorphicIsEvenImpl
4001 bool MatchAndExplain(const T& n, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::DivisibleByImpl
5447 bool MatchAndExplain(const tuple<T1, T2>& a_pair, function in class:testing::gmock_matchers_test::IsHalfOfMatcher
[all...]
/external/v8/testing/gmock/test/
H A Dgmock-generated-matchers_test.cc231 virtual bool MatchAndExplain(tuple<char, int> value, function in class:__anon27943::LessThanMatcher
264 virtual bool MatchAndExplain(int lhs, function in class:__anon27943::GreaterThanMatcher
H A Dgmock-matchers_test.cc170 virtual bool MatchAndExplain(int lhs, function in class:testing::gmock_matchers_test::GreaterThanMatcher
259 virtual bool MatchAndExplain(int x, function in class:testing::gmock_matchers_test::EvenMatcherImpl
278 // Tests implementing a monomorphic matcher using MatchAndExplain().
282 virtual bool MatchAndExplain(int x, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::NewEvenMatcherImpl
355 // Tests Matcher<T>::MatchAndExplain().
356 TEST(MatcherTest, MatchAndExplain) {
359 EXPECT_TRUE(m.MatchAndExplain(42, &listener1));
363 EXPECT_FALSE(m.MatchAndExplain(-9, &listener2));
443 bool MatchAndExplain(const T& x, function in class:testing::gmock_matchers_test::ReferencesBarOrIsZeroImpl
478 // Tests implementing a polymorphic matcher using MatchAndExplain()
489 bool MatchAndExplain(const T& x, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::PolymorphicIsEvenImpl
3963 bool MatchAndExplain(const T& n, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::DivisibleByImpl
5407 bool MatchAndExplain(const tuple<T1, T2>& a_pair, function in class:testing::gmock_matchers_test::IsHalfOfMatcher
[all...]

Completed in 484 milliseconds