• Home
  • Raw
  • Download

Lines Matching refs:Pointee

1685   EXPECT_CALL(helper, Call(Contains(Pointee(2))));  in TEST()
3638 const Matcher<int*> m = Pointee(Ge(0)); in TEST()
3648 const Matcher<const double*> m = Pointee(Ge(0)); in TEST()
3658 const Matcher<int* const &> m = Pointee(Ge(0)); in TEST()
3668 const Matcher<double* &> m = Pointee(Ge(0)); in TEST()
3691 EXPECT_THAT(as_base_ptr, WhenDynamicCastTo<Derived*>(Pointee(FieldIIs(4)))); in TEST()
3693 Not(WhenDynamicCastTo<Derived*>(Pointee(FieldIIs(5))))); in TEST()
3702 EXPECT_THAT(&base, Not(WhenDynamicCastTo<Derived*>(Pointee(_)))); in TEST()
3705 EXPECT_THAT(as_base_ptr, Not(WhenDynamicCastTo<OtherDerived*>(Pointee(_)))); in TEST()
3708 EXPECT_THAT(as_base_ptr, Not(WhenDynamicCastTo<Derived*>(Pointee(_)))); in TEST()
3740 Matcher<Base*> matcher = WhenDynamicCastTo<Derived*>(Pointee(_)); in TEST()
3749 Matcher<Base*> matcher = WhenDynamicCastTo<Derived*>(Pointee(_)); in TEST()
3798 const Matcher< ConstPropagatingPtr<int> > m = Pointee(Lt(5)); in TEST()
3810 const Matcher<const char*> m = Pointee(_); in TEST()
3816 const Matcher<int*> m = Pointee(5); in TEST()
3826 const Matcher<int*> m = Pointee(Gt(3)); in TEST()
3833 const Matcher<const std::string*> m = Pointee(StartsWith("Hi")); in TEST()
3837 const Matcher<long*> m2 = Pointee(GreaterThan(1)); // NOLINT in TEST()
3844 const Matcher<int*> m = Pointee(0); in TEST()
5485 EXPECT_CALL(helper, Call(IsSupersetOf({Pointee(1)}))); in TEST()
5487 EXPECT_CALL(helper, Call(Not(IsSupersetOf({Pointee(1), Pointee(2)})))); in TEST()
5613 EXPECT_CALL(helper, Call(IsSubsetOf({Pointee(1), Pointee(2)}))); in TEST()
5615 EXPECT_CALL(helper, Call(Not(IsSubsetOf({Pointee(1)})))); in TEST()
5654 EXPECT_CALL(helper, Call(ElementsAre(Pointee(1), Pointee(2)))); in TEST()
5657 EXPECT_CALL(helper, Call(ElementsAreArray({Pointee(3), Pointee(4)}))); in TEST()
5765 Call(UnorderedElementsAreArray({Pointee(1), Pointee(2)}))); in TEST()
5818 EXPECT_CALL(helper, Call(UnorderedElementsAre(Pointee(1), Pointee(2)))); in TEST_F()
6374 EXPECT_CALL(helper, Call(Each(Pointee(Gt(0))))); in TEST()
6515 return ExplainMatchResult(::testing::Pointee(::testing::get<1>(arg)),
6825 EXPECT_THAT(p, Pointee(Eq(3))); in TEST()
6826 EXPECT_THAT(p, Not(Pointee(Eq(2)))); in TEST()
6831 EXPECT_THAT(p, Pointee(Eq(3))); in TEST()
6832 EXPECT_THAT(p, Not(Pointee(Eq(2)))); in TEST()