Lines Matching refs:AClass
3114 class AClass { class
3116 AClass() : n_(0) {} in AClass() function in testing::gmock_matchers_test::AClass
3137 double AClass::x_ = 0.0;
3140 class DerivedClass : public AClass {
3148 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
3150 AClass a; in TEST()
3161 Matcher<const AClass&> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3163 AClass a; in TEST()
3175 AClass a; in TEST()
3177 Matcher<const AClass&> m = Property(&AClass::x, Ref(x)); in TEST()
3180 m = Property(&AClass::x, Not(Ref(x))); in TEST()
3187 Matcher<AClass> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3189 AClass a; in TEST()
3202 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0)); in TEST()
3216 Matcher<const AClass&> m = Property(&AClass::n, in TEST()
3219 AClass a; in TEST()
3227 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
3236 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
3238 AClass a; in TEST()
3242 m = Property(&AClass::n, GreaterThan(0)); in TEST()
3250 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
3252 AClass a; in TEST()
3262 Matcher<AClass*> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3264 AClass a; in TEST()
3275 Matcher<AClass* const&> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3277 AClass a; in TEST()
3287 Matcher<const AClass*> m = Property(&AClass::x, _); in TEST()
3296 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0)); in TEST()
3308 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
3317 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
3319 AClass a; in TEST()
3321 EXPECT_EQ("", Explain(m, static_cast<const AClass*>(NULL))); in TEST()
3326 m = Property(&AClass::n, GreaterThan(0)); in TEST()