Lines Matching defs:value_tuple
615 // TuplePrefix<N>::Matches(matcher_tuple, value_tuple) returns true
617 // the first N fields of value_tuple, respectively.
620 const ValueTuple& value_tuple) {
621 return TuplePrefix<N - 1>::Matches(matcher_tuple, value_tuple) &&
622 std::get<N - 1>(matcher_tuple).Matches(std::get<N - 1>(value_tuple));
665 const ValueTuple& /* value_tuple */) {
675 // TupleMatches(matcher_tuple, value_tuple) returns true if and only if
677 // value_tuple. It is a compiler error if matcher_tuple and
678 // value_tuple have different number of fields or incompatible field
682 const ValueTuple& value_tuple) {
683 // Makes sure that matcher_tuple and value_tuple have the same
689 value_tuple);