Lines Matching refs:AClass

621 class AClass {  class
623 AClass() : n_(0) {} in AClass() function in testing::gmock_matchers_test::__anon540e1b3d0111::AClass
647 double AClass::x_ = 0.0;
650 class DerivedClass : public AClass {
663 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
664 Matcher<const AClass&> m_with_name = Property("n", &AClass::n, Ge(0)); in TEST()
666 AClass a; in TEST()
679 Matcher<const AClass&> m = Property(&AClass::s, StartsWith("hi")); in TEST()
680 Matcher<const AClass&> m_with_name = in TEST()
681 Property("s", &AClass::s, StartsWith("hi")); in TEST()
683 AClass a; in TEST()
696 Matcher<const AClass&> m = Property(&AClass::s_ref, StartsWith("hi")); in TEST()
697 Matcher<const AClass&> m_with_name = in TEST()
698 Property("s", &AClass::s_ref, StartsWith("hi")); in TEST()
700 AClass a; in TEST()
714 AClass a; in TEST()
716 Matcher<const AClass&> m = Property(&AClass::x, Ref(x)); in TEST()
719 m = Property(&AClass::x, Not(Ref(x))); in TEST()
726 Matcher<AClass> m = Property(&AClass::s, StartsWith("hi")); in TEST()
728 AClass a; in TEST()
741 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0)); in TEST()
755 Matcher<const AClass&> m = Property(&AClass::n, Matcher<signed char>(Ge(0))); in TEST()
757 Matcher<const AClass&> m_with_name = in TEST()
758 Property("n", &AClass::n, Matcher<signed char>(Ge(0))); in TEST()
760 AClass a; in TEST()
770 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
778 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
787 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST_P()
789 AClass a; in TEST_P()
793 m = Property(&AClass::n, GreaterThan(0)); in TEST_P()
800 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST_P()
802 AClass a; in TEST_P()
806 m = Property("fancy_name", &AClass::n, GreaterThan(0)); in TEST_P()
816 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
818 AClass a; in TEST()
828 Matcher<AClass*> m = Property(&AClass::s, StartsWith("hi")); in TEST()
830 AClass a; in TEST()
841 Matcher<AClass* const&> m = Property(&AClass::s, StartsWith("hi")); in TEST()
843 AClass a; in TEST()
853 Matcher<const AClass*> m = Property(&AClass::x, _); in TEST()
862 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0)); in TEST()
874 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
882 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
891 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST_P()
893 AClass a; in TEST_P()
895 EXPECT_EQ("", Explain(m, static_cast<const AClass*>(nullptr))); in TEST_P()
900 m = Property(&AClass::n, GreaterThan(0)); in TEST_P()
907 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST_P()
909 AClass a; in TEST_P()
911 EXPECT_EQ("", Explain(m, static_cast<const AClass*>(nullptr))); in TEST_P()
916 m = Property("fancy_name", &AClass::n, GreaterThan(0)); in TEST_P()