Lines Matching refs:DerivedStruct
2929 struct DerivedStruct : public AStruct {
2933 GTEST_DISALLOW_ASSIGN_(DerivedStruct);
2996 // Note that the matcher expects DerivedStruct but we say AStruct
2998 Matcher<const DerivedStruct&> m = Field(&AStruct::x, Ge(0));
3000 DerivedStruct d;
3080 // Note that the matcher expects DerivedStruct but we say AStruct
3082 Matcher<DerivedStruct*> m = Field(&AStruct::x, Ge(0));
3084 DerivedStruct d;