Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/googletest/googlemock/test/
HDgmock-internal-utils_test.cc295 EXPECT_TRUE(TupleMatches(matchers, values)); in TEST()
302 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
303 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
311 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
312 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
313 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST()
314 EXPECT_FALSE(TupleMatches(matchers, values4)); in TEST()
326 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
327 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
328 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST()
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
HDgmock-spec-builders.h324 return TupleMatches(matchers_, args) && extra_matcher_.Matches(args); in Matches()
1119 return TupleMatches(matchers_, args) && extra_matcher_.Matches(args); in Matches()
1146 if (!TupleMatches(matchers_, args)) { in ExplainMatchResultTo()
HDgmock-matchers.h681 bool TupleMatches(const MatcherTuple& matcher_tuple, in TupleMatches() function