Home
last modified time | relevance | path

Searched refs:TupleMatches (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc314 EXPECT_TRUE(TupleMatches(matchers, values)); in TEST()
322 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
323 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
333 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
334 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
335 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST()
336 EXPECT_FALSE(TupleMatches(matchers, values4)); in TEST()
347 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
348 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
349 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST()
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h340 return TupleMatches(matchers_, args) && extra_matcher_.Matches(args); in Matches()
1099 return TupleMatches(matchers_, args) && extra_matcher_.Matches(args); in Matches()
1127 if (!TupleMatches(matchers_, args)) { in ExplainMatchResultTo()
H A Dgmock-matchers.h969 bool TupleMatches(const MatcherTuple& matcher_tuple, in TupleMatches() function