• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/googletest/googlemock/test/

Lines Matching defs:AClass

4173 class AClass {
4175 AClass() : n_(0) {}
4201 double AClass::x_ = 0.0;
4204 class DerivedClass : public AClass {
4214 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
4215 Matcher<const AClass&> m_with_name = Property("n", &AClass::n, Ge(0));
4217 AClass a;
4230 Matcher<const AClass&> m = Property(&AClass::s, StartsWith("hi"));
4231 Matcher<const AClass&> m_with_name =
4232 Property("s", &AClass::s, StartsWith("hi"));
4234 AClass a;
4248 Matcher<const AClass&> m = Property(&AClass::s_ref, StartsWith("hi"));
4249 Matcher<const AClass&> m_with_name =
4250 Property("s", &AClass::s_ref, StartsWith("hi"));
4252 AClass a;
4267 AClass a;
4269 Matcher<const AClass&> m = Property(&AClass::x, Ref(x));
4272 m = Property(&AClass::x, Not(Ref(x)));
4279 Matcher<AClass> m = Property(&AClass::s, StartsWith("hi"));
4281 AClass a;
4293 // say AClass.
4294 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0));
4308 Matcher<const AClass&> m = Property(&AClass::n,
4311 Matcher<const AClass&> m_with_name =
4312 Property("n", &AClass::n, Matcher<signed char>(Ge(0)));
4314 AClass a;
4324 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
4332 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0));
4341 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
4343 AClass a;
4347 m = Property(&AClass::n, GreaterThan(0));
4354 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0));
4356 AClass a;
4360 m = Property("fancy_name", &AClass::n, GreaterThan(0));
4368 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
4370 AClass a;
4380 Matcher<AClass*> m = Property(&AClass::s, StartsWith("hi"));
4382 AClass a;
4393 Matcher<AClass* const&> m = Property(&AClass::s, StartsWith("hi"));
4395 AClass a;
4405 Matcher<const AClass*> m = Property(&AClass::x, _);
4413 // say AClass.
4414 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0));
4426 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
4434 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0));
4443 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
4445 AClass a;
4447 EXPECT_EQ("", Explain(m, static_cast<const AClass*>(NULL)));
4452 m = Property(&AClass::n, GreaterThan(0));
4459 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0));
4461 AClass a;
4463 EXPECT_EQ("", Explain(m, static_cast<const AClass*>(NULL)));
4468 m = Property("fancy_name", &AClass::n, GreaterThan(0));