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

/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h728 // TuplePrefix<N>::Matches(matcher_tuple, value_tuple) returns true
729 // iff the first N fields of matcher_tuple matches the first N
732 static bool Matches(const MatcherTuple& matcher_tuple, argument
734 return TuplePrefix<N - 1>::Matches(matcher_tuple, value_tuple)
735 && get<N - 1>(matcher_tuple).Matches(get<N - 1>(value_tuple));
779 static bool Matches(const MatcherTuple& /* matcher_tuple */,
790 // TupleMatches(matcher_tuple, value_tuple) returns true iff all
791 // matchers in matcher_tuple match the corresponding fields in
792 // value_tuple. It is a compiler error if matcher_tuple and
796 bool TupleMatches(const MatcherTuple& matcher_tuple, argument
[all...]

Completed in 15 milliseconds