Lines Matching defs:MyStruct1
174 struct MyStruct1 {176 MyStruct1(bool x) : x(x) {};180 MyStruct1 operator&&(const MyStruct1& lhs, const MyStruct1& rhs) { return lhs.x && rhs.x; }181 MyStruct1 operator||(MyStruct1& lhs, MyStruct1& rhs) { return lhs.x && rhs.x; }200 MyStruct1 U(false);201 MyStruct1 V(true);