Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/utilities/variant/variant.relops/
H A Drelops.pass.cpp86 struct MyBool { struct
88 constexpr explicit MyBool(bool v) : value(v) {} in MyBool() argument
95 inline constexpr MyBool operator==(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexce… in operator ==() argument
96 return MyBool(LHS.value == RHS.value); in operator ==()
99 return MyBool(LHS.value != RHS.value); in operator !=()
101 inline constexpr MyBool operator<(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexcep… in operator <()
102 return MyBool(LHS.value < RHS.value); in operator <()
105 return MyBool(LHS.value <= RHS.value); in operator <=()
107 inline constexpr MyBool operator>(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexcep… in operator >()
108 return MyBool(LHS.value > RHS.value); in operator >()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Deasily-swappable-parameters.c16 typedef bool MyBool; typedef
87 void typedefdBoolAsWritten(MyBool MB1, MyBool MB2) {} // NO-WARN: "MyBool" as written type name ign… in typedefdBoolAsWritten()
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dreorder-synthesized-ivars.m25 @property (readwrite) BOOL MyBool; property