Home | History | Annotate | Download | only in test

Lines Matching refs:AClass

3011 class AClass {
3013 AClass() : n_(0) {}
3034 double AClass::x_ = 0.0;
3037 class DerivedClass : public AClass {
3045 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3047 AClass a;
3058 Matcher<const AClass&> m = Property(&AClass::s, StartsWith("hi"));
3060 AClass a;
3072 AClass a;
3074 Matcher<const AClass&> m = Property(&AClass::x, Ref(x));
3077 m = Property(&AClass::x, Not(Ref(x)));
3084 Matcher<AClass> m = Property(&AClass::s, StartsWith("hi"));
3086 AClass a;
3098 // say AClass.
3099 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0));
3113 Matcher<const AClass&> m = Property(&AClass::n,
3116 AClass a;
3124 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3133 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3135 AClass a;
3139 m = Property(&AClass::n, GreaterThan(0));
3147 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3149 AClass a;
3159 Matcher<AClass*> m = Property(&AClass::s, StartsWith("hi"));
3161 AClass a;
3172 Matcher<AClass* const&> m = Property(&AClass::s, StartsWith("hi"));
3174 AClass a;
3184 Matcher<const AClass*> m = Property(&AClass::x, _);
3192 // say AClass.
3193 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0));
3205 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3214 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3216 AClass a;
3218 EXPECT_EQ("", Explain(m, static_cast<const AClass*>(NULL)));
3223 m = Property(&AClass::n, GreaterThan(0));