Searched defs:ConvertibleToBool (Results 1 – 5 of 5) sorted by relevance
664 struct ConvertibleToBool { struct665 explicit ConvertibleToBool(bool y) : x(y) {} in ConvertibleToBool() argument666 operator bool() const { return x; } // NOLINT in operator bool()667 bool x = false;
675 struct ConvertibleToBool { struct676 explicit ConvertibleToBool(bool y) : x(y) {} in ConvertibleToBool() argument677 operator bool() const { return x; } // NOLINT in operator bool()678 bool x = false;
664 struct ConvertibleToBool { struct665 explicit ConvertibleToBool(bool y) : x(y) {} in ConvertibleToBool() function666 operator bool() const { return x; } // NOLINT in operator bool()667 bool x = false;
2954 class ConvertibleToBool { in TEST() class2956 explicit ConvertibleToBool(int number) : number_(number) {} in TEST() function in testing::gmock_matchers_test::__anon01910f110111::ConvertibleToBool