• Home
  • Raw
  • Download

Lines Matching refs:AClass

4268 class AClass {  in TEST()  class
4270 AClass() : n_(0) {} in TEST() function in testing::gmock_matchers_test::__anonbffc6dba0111::AClass
4294 double AClass::x_ = 0.0; in TEST()
4297 class DerivedClass : public AClass { in TEST()
4307 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4308 Matcher<const AClass&> m_with_name = Property("n", &AClass::n, Ge(0)); in TEST()
4310 AClass a; in TEST()
4323 Matcher<const AClass&> m = Property(&AClass::s, StartsWith("hi")); in TEST()
4324 Matcher<const AClass&> m_with_name = in TEST()
4325 Property("s", &AClass::s, StartsWith("hi")); in TEST()
4327 AClass a; in TEST()
4340 Matcher<const AClass&> m = Property(&AClass::s_ref, StartsWith("hi")); in TEST()
4341 Matcher<const AClass&> m_with_name = in TEST()
4342 Property("s", &AClass::s_ref, StartsWith("hi")); in TEST()
4344 AClass a; in TEST()
4358 AClass a; in TEST()
4360 Matcher<const AClass&> m = Property(&AClass::x, Ref(x)); in TEST()
4363 m = Property(&AClass::x, Not(Ref(x))); in TEST()
4370 Matcher<AClass> m = Property(&AClass::s, StartsWith("hi")); in TEST()
4372 AClass a; in TEST()
4385 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4399 Matcher<const AClass&> m = Property(&AClass::n, in TEST()
4402 Matcher<const AClass&> m_with_name = in TEST()
4403 Property("n", &AClass::n, Matcher<signed char>(Ge(0))); in TEST()
4405 AClass a; in TEST()
4415 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4423 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4432 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4434 AClass a; in TEST()
4438 m = Property(&AClass::n, GreaterThan(0)); in TEST()
4445 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4447 AClass a; in TEST()
4451 m = Property("fancy_name", &AClass::n, GreaterThan(0)); in TEST()
4459 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4461 AClass a; in TEST()
4471 Matcher<AClass*> m = Property(&AClass::s, StartsWith("hi")); in TEST()
4473 AClass a; in TEST()
4484 Matcher<AClass* const&> m = Property(&AClass::s, StartsWith("hi")); in TEST()
4486 AClass a; in TEST()
4496 Matcher<const AClass*> m = Property(&AClass::x, _); in TEST()
4505 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4517 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4525 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4534 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4536 AClass a; in TEST()
4538 EXPECT_EQ("", Explain(m, static_cast<const AClass*>(nullptr))); in TEST()
4543 m = Property(&AClass::n, GreaterThan(0)); in TEST()
4550 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4552 AClass a; in TEST()
4554 EXPECT_EQ("", Explain(m, static_cast<const AClass*>(nullptr))); in TEST()
4559 m = Property("fancy_name", &AClass::n, GreaterThan(0)); in TEST()