Home | History | Annotate | Download | only in test

Lines Matching refs:Pointee

107 using testing::Pointee;
2715 const Matcher<int*> m = Pointee(Ge(0));
2725 const Matcher<const double*> m = Pointee(Ge(0));
2735 const Matcher<int* const &> m = Pointee(Ge(0));
2745 const Matcher<double* &> m = Pointee(Ge(0));
2757 const Matcher<const char*> m = Pointee(_);
2761 // Tests that we can write Pointee(value) instead of Pointee(Eq(value)).
2763 const Matcher<int*> m = Pointee(5);
2773 const Matcher<int*> m = Pointee(Gt(3));
2780 const Matcher<const string*> m = Pointee(StartsWith("Hi"));
2784 const Matcher<long*> m2 = Pointee(GreaterThan(1)); // NOLINT
2791 const Matcher<int*> m = Pointee(0);