Lines Matching defs:anotherBoolean
79 bool anotherBoolean = false;
81 int integer = boolean && anotherBoolean;
83 // CHECK-FIXES: int integer = static_cast<int>(boolean && anotherBoolean);
89 float floating = (boolean || anotherBoolean) * 0.3f;
91 // CHECK-FIXES: float floating = static_cast<float>(boolean || anotherBoolean) * 0.3f;
93 double doubleFloating = (boolean && (anotherBoolean || boolean)) * 0.3;
95 // CHECK-FIXES: double doubleFloating = static_cast<double>(boolean && (anotherBoolean || boolean)) * 0.3;
137 bool anotherBoolean = false;
139 functionTaking<bool>(boolean == anotherBoolean);
140 functionTaking<bool>(boolean != anotherBoolean);