Lines Matching refs:Pointee
64 EXPECT_CALL(helper, Call(Contains(Pointee(2)))); in TEST()
165 const Matcher<int*> m = Pointee(Ge(0)); in TEST()
175 const Matcher<const double*> m = Pointee(Ge(0)); in TEST()
185 const Matcher<int* const&> m = Pointee(Ge(0)); in TEST()
195 const Matcher<double*&> m = Pointee(Ge(0)); in TEST()
207 const Matcher<std::unique_ptr<int>> m = Pointee(Ge(0)); in TEST()
214 const Matcher<std::unique_ptr<const int>> m = Pointee(Ge(0)); in TEST()
288 const Matcher<ConstPropagatingPtr<int>> m = Pointee(Lt(5)); in TEST()
300 const Matcher<const char*> m = Pointee(_); in TEST()
306 const Matcher<int*> m = Pointee(5); in TEST()
316 const Matcher<int*> m = Pointee(Gt(3)); in TEST()
322 const Matcher<const std::string*> m = Pointee(StartsWith("Hi")); in TEST_P()
326 const Matcher<long*> m2 = Pointee(GreaterThan(1)); // NOLINT in TEST_P()
333 const Matcher<int*> m = Pointee(0); in TEST()
1627 EXPECT_CALL(helper, Call(IsSupersetOf({Pointee(1)}))); in TEST()
1629 EXPECT_CALL(helper, Call(Not(IsSupersetOf({Pointee(1), Pointee(2)})))); in TEST()
1755 EXPECT_CALL(helper, Call(IsSubsetOf({Pointee(1), Pointee(2)}))); in TEST()
1757 EXPECT_CALL(helper, Call(Not(IsSubsetOf({Pointee(1)})))); in TEST()
1796 EXPECT_CALL(helper, Call(ElementsAre(Pointee(1), Pointee(2)))); in TEST()
1799 EXPECT_CALL(helper, Call(ElementsAreArray({Pointee(3), Pointee(4)}))); in TEST()
1906 Call(UnorderedElementsAreArray({Pointee(1), Pointee(2)}))); in TEST()
1959 EXPECT_CALL(helper, Call(UnorderedElementsAre(Pointee(1), Pointee(2)))); in TEST_F()
2210 EXPECT_CALL(helper, Call(Each(Pointee(Gt(0))))); in TEST()
2351 return ExplainMatchResult(::testing::Pointee(::testing::get<1>(arg)),
2481 EXPECT_THAT(p, Pointee(Eq(3))); in TEST()
2482 EXPECT_THAT(p, Not(Pointee(Eq(2)))); in TEST()
2768 EXPECT_THAT(&v, Pointee(ElementsAre(0, 1, _))); in TEST()
2769 EXPECT_THAT(&v, Not(Pointee(ElementsAre(0, _, 3)))); in TEST()