Searched defs:MatchAndExplain (Results 1 - 5 of 5) sorted by relevance

/external/chromium/chrome/browser/sync/
H A Djs_test_util.cc27 virtual bool MatchAndExplain( function in class:browser_sync::__anon2334::HasArgsMatcher
/external/chromium/testing/gmock/test/
H A Dgmock-generated-matchers_test.cc229 virtual bool MatchAndExplain(tuple<char, int> value, function in class:__anon3131::LessThanMatcher
262 virtual bool MatchAndExplain(int lhs, function in class:__anon3131::GreaterThanMatcher
H A Dgmock-matchers_test.cc146 virtual bool MatchAndExplain(int lhs, function in class:testing::gmock_matchers_test::GreaterThanMatcher
229 virtual bool MatchAndExplain(int x, function in class:testing::gmock_matchers_test::EvenMatcherImpl
248 // Tests implementing a monomorphic matcher using MatchAndExplain().
252 virtual bool MatchAndExplain(int x, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::NewEvenMatcherImpl
325 // Tests Matcher<T>::MatchAndExplain().
326 TEST(MatcherTest, MatchAndExplain) {
329 EXPECT_TRUE(m.MatchAndExplain(42, &listener1));
333 EXPECT_FALSE(m.MatchAndExplain(-9, &listener2));
375 bool MatchAndExplain(const T& x, function in class:testing::gmock_matchers_test::ReferencesBarOrIsZeroImpl
410 // Tests implementing a polymorphic matcher using MatchAndExplain()
421 bool MatchAndExplain(const T& x, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::PolymorphicIsEvenImpl
3400 bool MatchAndExplain(const T& n, MatchResultListener* listener) const { function in class:testing::gmock_matchers_test::DivisibleByImpl
3902 bool MatchAndExplain(const tuple<T1, T2>& a_pair, function in class:testing::gmock_matchers_test::IsHalfOfMatcher
[all...]
/external/chromium/testing/gmock/include/gmock/
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,
1264 virtual bool MatchAndExplain(\
1298 bool name##Matcher::gmock_Impl<arg_type>::MatchAndExplain(\
1312 virtual bool MatchAndExplain(\
1350 bool name##MatcherP<p0##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
1364 virtual bool MatchAndExplain(\
1407 p1##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
1421 virtual bool MatchAndExplain(\
1467 p2##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
[all...]
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(
637 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::MatcherCastImpl::Impl
668 virtual bool MatchAndExplain( function in class:testing::internal::AnyMatcherImpl
752 bool MatchAndExplain(const Pointer& p, function in class:testing::internal::IsNullMatcher
768 bool MatchAndExplain(const Pointer& p, function in class:testing::internal::NotNullMatcher
826 virtual bool MatchAndExplain( function in class:testing::internal::RefMatcher::Impl
900 bool MatchAndExplain(ConstCharPointer s, function in class:testing::internal::StrEqualityMatcher
908 bool MatchAndExplain(const StringType& s, function in class:testing::internal::StrEqualityMatcher
954 bool MatchAndExplain(ConstCharPointer s, function in class:testing::internal::HasSubstrMatcher
959 bool MatchAndExplain(const StringType& s, function in class:testing::internal::HasSubstrMatcher
995 bool MatchAndExplain(ConstCharPointer s, function in class:testing::internal::StartsWithMatcher
1000 bool MatchAndExplain(const StringType& s, function in class:testing::internal::StartsWithMatcher
1035 bool MatchAndExplain(ConstCharPointer s, function in class:testing::internal::EndsWithMatcher
1040 bool MatchAndExplain(const StringType& s, function in class:testing::internal::EndsWithMatcher
1074 bool MatchAndExplain(const char* s, function in class:testing::internal::MatchesRegexMatcher
1079 bool MatchAndExplain(const internal::string& s, function in class:testing::internal::MatchesRegexMatcher
1168 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::NotMatcherImpl
1232 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::BothOfMatcherImpl
1319 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const { function in class:testing::internal::EitherOfMatcherImpl
1393 bool MatchAndExplain(T& x, // NOLINT function in class:testing::internal::TrulyMatcher
1528 virtual bool MatchAndExplain(T value, function in class:testing::internal::FloatingEqMatcher::Impl
1647 virtual bool MatchAndExplain(Pointer pointer, function in class:testing::internal::PointeeMatcher::Impl
1687 bool MatchAndExplain(const T& value, MatchResultListener* listener) const { function in class:testing::internal::FieldMatcher
1748 bool MatchAndExplain(const T&value, MatchResultListener* listener) const { function in class:testing::internal::PropertyMatcher
1852 virtual bool MatchAndExplain(T obj, MatchResultListener* listener) const { function in class:testing::internal::ResultOfMatcher::Impl
1915 bool MatchAndExplain(const LhsContainer& lhs, function in class:testing::internal::ContainerEqMatcher
2034 virtual bool MatchAndExplain(LhsContainer lhs, function in class:testing::internal::PointwiseMatcher::Impl
2147 virtual bool MatchAndExplain(Container container, function in class:testing::internal::ContainsMatcherImpl
2176 virtual bool MatchAndExplain(Container container, function in class:testing::internal::EachMatcherImpl
2236 virtual bool MatchAndExplain(PairType key_value, function in class:testing::internal::KeyMatcherImpl
2318 virtual bool MatchAndExplain(PairType a_pair, function in class:testing::internal::PairMatcherImpl
2448 virtual bool MatchAndExplain(Container container, function in class:testing::internal::ElementsAreMatcherImpl
[all...]

Completed in 439 milliseconds