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

/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc121 using testing::Pointwise;
5409 // For testing Pointwise().
5442 const Matcher<const vector<int>&> m = Pointwise(IsHalfOf(), rhs);
5458 const Matcher<const int (&)[2]> m = Pointwise(IsHalfOf(), rhs);
5472 EXPECT_THAT(lhs, Pointwise(Lt(), rhs));
5473 EXPECT_THAT(lhs, Not(Pointwise(Gt(), rhs)));
5482 EXPECT_THAT(lhs, Pointwise(Gt(), rhs));
5483 EXPECT_THAT(lhs, Not(Pointwise(Lt(), rhs)));
5490 EXPECT_THAT(lhs, Pointwise(Gt(), {1, 2, 3}));
5491 EXPECT_THAT(lhs, Not(Pointwise(L
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2688 // Implements Pointwise(tuple_matcher, rhs_container). tuple_matcher
4187 Pointwise(const TupleMatcher& tuple_matcher, const Container& rhs) { function in namespace:testing
4198 // Supports the Pointwise(m, {a, b, c}) syntax.
4200 inline internal::PointwiseMatcher<TupleMatcher, std::vector<T> > Pointwise( function in namespace:testing
4202 return Pointwise(tuple_matcher, std::vector<T>(rhs));
4216 // This is like Pointwise(pair_matcher, rhs), except that the element

Completed in 44 milliseconds