Home | History | Annotate | Download | only in test

Lines Matching refs:Pointee

119 using testing::Pointee;
3069 const Matcher<int*> m = Pointee(Ge(0));
3079 const Matcher<const double*> m = Pointee(Ge(0));
3089 const Matcher<int* const &> m = Pointee(Ge(0));
3099 const Matcher<double* &> m = Pointee(Ge(0));
3131 const Matcher< ConstPropagatingPtr<int> > m = Pointee(Lt(5));
3143 const Matcher<const char*> m = Pointee(_);
3147 // Tests that we can write Pointee(value) instead of Pointee(Eq(value)).
3149 const Matcher<int*> m = Pointee(5);
3159 const Matcher<int*> m = Pointee(Gt(3));
3166 const Matcher<const string*> m = Pointee(StartsWith("Hi"));
3170 const Matcher<long*> m2 = Pointee(GreaterThan(1)); // NOLINT
3177 const Matcher<int*> m = Pointee(0);