Lines Matching refs:inner_matcher_
2632 : inner_matcher_(
2646 const bool matches = inner_matcher_.MatchAndExplain(*it, &inner_listener);
2659 const Matcher<const Element&> inner_matcher_;
2674 this->inner_matcher_.DescribeTo(os);
2679 this->inner_matcher_.DescribeTo(os);
2700 this->inner_matcher_.DescribeTo(os);
2705 this->inner_matcher_.DescribeNegationTo(os);
2718 explicit ContainsMatcher(M m) : inner_matcher_(m) {}
2723 new ContainsMatcherImpl<const Container&>(inner_matcher_));
2727 const M inner_matcher_;
2734 explicit EachMatcher(M m) : inner_matcher_(m) {}
2739 new EachMatcherImpl<const Container&>(inner_matcher_));
2743 const M inner_matcher_;
2782 : inner_matcher_(
2791 const bool match = inner_matcher_.MatchAndExplain(
2803 inner_matcher_.DescribeTo(os);
2809 inner_matcher_.DescribeTo(os);
2813 const Matcher<const KeyType&> inner_matcher_;
3898 : inner_matcher_(SafeMatcherCast<const SelectedArgs&>(inner_matcher)) {}
3906 if (!listener->IsInterested()) return inner_matcher_.Matches(selected_args);
3913 inner_matcher_.MatchAndExplain(selected_args, &inner_listener);
3921 inner_matcher_.DescribeTo(os);
3927 inner_matcher_.DescribeNegationTo(os);
3942 MonomorphicInnerMatcher inner_matcher_;
3949 : inner_matcher_(std::move(inner_matcher)) {}
3953 return MakeMatcher(new ArgsMatcherImpl<ArgsTuple, k...>(inner_matcher_));
3957 InnerMatcher inner_matcher_;