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

/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc135 using testing::UnorderedPointwise;
5542 const Matcher<const vector<int>&> m = UnorderedPointwise(IsHalfOf(), rhs);
5569 const Matcher<const int (&)[2]> m = UnorderedPointwise(IsHalfOf(), rhs);
5583 EXPECT_THAT(lhs, UnorderedPointwise(Lt(), rhs));
5584 EXPECT_THAT(lhs, Not(UnorderedPointwise(Gt(), rhs)));
5593 EXPECT_THAT(lhs, UnorderedPointwise(Gt(), rhs));
5594 EXPECT_THAT(lhs, Not(UnorderedPointwise(Lt(), rhs)));
5601 EXPECT_THAT(lhs, UnorderedPointwise(Gt(), {5, 1, 3}));
5602 EXPECT_THAT(lhs, Not(UnorderedPointwise(Lt(), {1, 1, 7})));
5610 EXPECT_THAT(lhs, Not(UnorderedPointwise(G
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3546 // UnorderedPointwise() in terms of UnorderedElementsAreArray().
3550 // UnorderedPointwise().
3562 // We have to define this for UnorderedPointwise() to compile in
3610 // UnorderedPointwise() in terms of UnorderedElementsAreArray().
4207 // UnorderedPointwise(pair_matcher, rhs) matches an STL-style
4223 UnorderedPointwise(const Tuple2Matcher& tuple2_matcher, function in namespace:testing
4252 // Supports the UnorderedPointwise(m, {a, b, c}) syntax.
4256 UnorderedPointwise(const Tuple2Matcher& tuple2_matcher, function in namespace:testing
4258 return UnorderedPointwise(tuple2_matcher, std::vector<T>(rhs));

Completed in 47 milliseconds