Searched refs:AStruct (Results 1 – 1 of 1) sorted by relevance
371 struct AStruct { struct372 AStruct() : x(0), y(1.0), z(5), p(nullptr) {} in AStruct() function373 AStruct(const AStruct& rhs) in AStruct() argument383 struct DerivedStruct : public AStruct {391 Matcher<AStruct> m = Field(&AStruct::x, Ge(0)); in TEST()392 Matcher<AStruct> m_with_name = Field("x", &AStruct::x, Ge(0)); in TEST()394 AStruct a; in TEST()404 AStruct a; in TEST()406 Matcher<AStruct> m = Field(&AStruct::y, Ge(0.0)); in TEST()407 Matcher<AStruct> m_with_name = Field("y", &AStruct::y, Ge(0.0)); in TEST()[all …]