Searched refs:AStruct (Results 1 – 1 of 1) sorted by relevance
372 struct AStruct { struct373 AStruct() : x(0), y(1.0), z(5), p(nullptr) {} in AStruct() argument374 AStruct(const AStruct& rhs) in AStruct() function384 struct DerivedStruct : public AStruct {392 Matcher<AStruct> m = Field(&AStruct::x, Ge(0)); in TEST()393 Matcher<AStruct> m_with_name = Field("x", &AStruct::x, Ge(0)); in TEST()395 AStruct a; in TEST()405 AStruct a; in TEST()407 Matcher<AStruct> m = Field(&AStruct::y, Ge(0.0)); in TEST()408 Matcher<AStruct> m_with_name = Field("y", &AStruct::y, Ge(0.0)); in TEST()[all …]