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