Lines Matching refs:DerivedStruct
3389 struct DerivedStruct : public AStruct {
3393 GTEST_DISALLOW_ASSIGN_(DerivedStruct);
3456 // Note that the matcher expects DerivedStruct but we say AStruct
3458 Matcher<const DerivedStruct&> m = Field(&AStruct::x, Ge(0));
3460 DerivedStruct d;
3540 // Note that the matcher expects DerivedStruct but we say AStruct
3542 Matcher<DerivedStruct*> m = Field(&AStruct::x, Ge(0));
3544 DerivedStruct d;