Lines Matching refs:Negated
141 const Expr *E, bool Negated, in compareExpressionToConstant() argument
148 return ExprText + " " + (Negated ? "!=" : "==") + " " + Constant; in compareExpressionToConstant()
152 const Expr *E, bool Negated) { in compareExpressionToNullPtr() argument
154 return compareExpressionToConstant(Context, E, Negated, NullPtr); in compareExpressionToNullPtr()
158 const Expr *E, bool Negated) { in compareExpressionToZero() argument
159 return compareExpressionToConstant(Context, E, Negated, "0"); in compareExpressionToZero()
163 bool Negated, const Expr *E) { in replacementExpression() argument
169 if (Negated) { in replacementExpression()
634 Bool](const Expr *ReplaceWith, bool Negated) { in reportBinOp() argument
636 replacementExpression(Context, Negated, ReplaceWith); in reportBinOp()
721 bool Negated) { in replaceWithCondition() argument
723 replacementExpression(Context, Negated, Ternary->getCond()); in replaceWithCondition()
731 bool Negated) { in replaceWithReturnCondition() argument
734 replacementExpression(Context, Negated, If->getCond()); in replaceWithReturnCondition()
742 const ASTContext &Context, const ReturnStmt *Ret, bool Negated, in replaceCompoundReturnWithCondition() argument
745 "return " + replacementExpression(Context, Negated, If->getCond()); in replaceCompoundReturnWithCondition()
755 bool Negated) { in replaceWithAssignment() argument
760 replacementExpression(Context, Negated, IfAssign->getCond()); in replaceWithAssignment()