Home | History | Annotate | Download | only in test

Lines Matching full:pointee

109 using testing::Pointee;
2786 const Matcher<int*> m = Pointee(Ge(0));
2796 const Matcher<const double*> m = Pointee(Ge(0));
2806 const Matcher<int* const &> m = Pointee(Ge(0));
2816 const Matcher<double* &> m = Pointee(Ge(0));
2848 const Matcher< ConstPropagatingPtr<int> > m = Pointee(Lt(5));
2860 const Matcher<const char*> m = Pointee(_);
2864 // Tests that we can write Pointee(value) instead of Pointee(Eq(value)).
2866 const Matcher<int*> m = Pointee(5);
2876 const Matcher<int*> m = Pointee(Gt(3));
2883 const Matcher<const string*> m = Pointee(StartsWith("Hi"));
2887 const Matcher<long*> m2 = Pointee(GreaterThan(1)); // NOLINT
2894 const Matcher<int*> m = Pointee(0);