Home | History | Annotate | Download | only in gmock

Lines Matching refs:InnerMatcher

989 template <typename InnerMatcher>
992 explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
1002 InnerMatcher matcher_;
1585 template <typename InnerMatcher>
1588 explicit PointeeMatcher(const InnerMatcher& matcher) : matcher_(matcher) {}
1611 explicit Impl(const InnerMatcher& matcher)
1638 const InnerMatcher matcher_;
1880 template <typename Callable, typename InnerMatcher>
1883 ResultOfMatcher(Callable callable, InnerMatcher matcher)
1940 const InnerMatcher matcher_;
2364 template <typename InnerMatcher>
2365 explicit QuantifierMatcherImpl(InnerMatcher inner_matcher)
2403 template <typename InnerMatcher>
2404 explicit ContainsMatcherImpl(InnerMatcher inner_matcher)
2432 template <typename InnerMatcher>
2433 explicit EachMatcherImpl(InnerMatcher inner_matcher)
2526 template <typename InnerMatcher>
2527 explicit KeyMatcherImpl(InnerMatcher inner_matcher)
3419 template <typename InnerMatcher>
3420 explicit ArgsMatcherImpl(const InnerMatcher& inner_matcher)
3468 template <class InnerMatcher, size_t... k>
3471 explicit ArgsMatcher(InnerMatcher inner_matcher)
3480 InnerMatcher inner_matcher_;
3684 template <typename InnerMatcher>
3685 inline internal::PointeeMatcher<InnerMatcher> Pointee(
3686 const InnerMatcher& inner_matcher) {
3687 return internal::PointeeMatcher<InnerMatcher>(inner_matcher);
3799 template <typename Callable, typename InnerMatcher>
3800 internal::ResultOfMatcher<Callable, InnerMatcher> ResultOf(
3801 Callable callable, InnerMatcher matcher) {
3802 return internal::ResultOfMatcher<Callable, InnerMatcher>(
3990 template <typename InnerMatcher>
3991 inline internal::NotMatcher<InnerMatcher> Not(InnerMatcher m) {
3992 return internal::NotMatcher<InnerMatcher>(m);
4497 template <size_t... k, typename InnerMatcher>
4498 internal::ArgsMatcher<typename std::decay<InnerMatcher>::type, k...> Args(
4499 InnerMatcher&& matcher) {
4500 return internal::ArgsMatcher<typename std::decay<InnerMatcher>::type, k...>(
4501 std::forward<InnerMatcher>(matcher));
4511 template <typename InnerMatcher>
4512 inline InnerMatcher AllArgs(const InnerMatcher& matcher) { return matcher; }