Lines Matching refs:matcher1
1259 BothOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2)
1260 : matcher1_(matcher1), matcher2_(matcher2) {}
1317 template <typename Matcher1, typename Matcher2>
1320 BothOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
1321 : matcher1_(matcher1), matcher2_(matcher2) {}
1324 // BothOfMatcher<Matcher1, Matcher2> object to match any type that
1325 // both Matcher1 and Matcher2 can match.
1333 Matcher1 matcher1_;
1346 EitherOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2)
1347 : matcher1_(matcher1), matcher2_(matcher2) {}
1405 template <typename Matcher1, typename Matcher2>
1408 EitherOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
1409 : matcher1_(matcher1), matcher2_(matcher2) {}
1412 // EitherOfMatcher<Matcher1, Matcher2> object to match any type that
1413 // both Matcher1 and Matcher2 can match.
1421 Matcher1 matcher1_;