Lines Matching defs:anotherBoolean
75 bool anotherBoolean = false;
77 int integer = boolean && anotherBoolean;
80 // CHECK-FIXES: int integer = (int)boolean && (int)anotherBoolean;
82 float floating = (boolean || anotherBoolean) * 0.3f;
85 // CHECK-FIXES: float floating = ((int)boolean || (int)anotherBoolean) * 0.3f;
87 double doubleFloating = (boolean && (anotherBoolean || boolean)) * 0.3;
91 // CHECK-FIXES: double doubleFloating = ((int)boolean && ((int)anotherBoolean || (int)boolean)) * 0.3;
133 bool anotherBoolean = false;
135 functionTakingBool(boolean == anotherBoolean);
136 functionTakingBool(boolean != anotherBoolean);