Home
last modified time | relevance | path

Searched refs:MyBool (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/test/std/utilities/variant/variant.relops/
Drelops.pass.cpp88 struct MyBool { struct
90 constexpr explicit MyBool(bool v) : value(v) {} in MyBool() argument
97 inline constexpr MyBool operator==(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexce… in operator ==() argument
98 return MyBool(LHS.value == RHS.value); in operator ==()
100 inline constexpr MyBool operator!=(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexce… in operator !=()
101 return MyBool(LHS.value != RHS.value); in operator !=()
103 inline constexpr MyBool operator<(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexcep… in operator <()
104 return MyBool(LHS.value < RHS.value); in operator <()
106 inline constexpr MyBool operator<=(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexce… in operator <=()
107 return MyBool(LHS.value <= RHS.value); in operator <=()
[all …]
/external/clang/test/CodeGenObjC/
Dreorder-synthesized-ivars.m25 @property (readwrite) BOOL MyBool; property