Lines Matching defs:matches
497 ElementMatcherPairs matches = internal::FindMaxBipartiteMatching(graph);
498 EXPECT_EQ(FindBacktrackingMaxBPM(graph).size(), matches.size())
500 // Check that all elements of matches are in the graph.
504 SCOPED_TRACE(PrintToString(matches));
505 for (size_t i = 0; i < matches.size(); ++i) {
506 size_t ilhs = matches[i].first;
507 size_t irhs = matches[i].second;
695 EXPECT_EQ("whose value 1 matches", Explain(m, SampleOptional<int>(1)));
1368 // Succeeds if arg matches exactly 2 of the 3 matchers.
1398 EXPECT_THAT(some_list, Contains(5).Times(_)); // Times(_) always matches
1408 "whose element #1 matches but whose match quantity of 1 does not match",
1412 EXPECT_EQ("has no element that matches and whose match quantity of 0 matches",
1417 "has no element that matches and whose match quantity of 0 does not "
1423 "whose element #1 matches but whose match quantity of 1 does not "
1428 EXPECT_EQ("whose elements (0, 1) match and whose match quantity of 2 matches",
1433 "has no element that matches and whose match quantity of 0 does not "
1586 // Explains the first positive match and all prior negative matches...