Home
last modified time | relevance | path

Searched refs:isAdditiveOp (Results 1 – 9 of 9) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DPointerArithChecker.cpp320 if (!BOp->isAdditiveOp() && OpKind != BO_AddAssign && OpKind != BO_SubAssign) in checkPreStmt()
331 reportPointerArithMisuse(Lhs, C, !BOp->isAdditiveOp()); in checkPreStmt()
/external/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp483 if (BinaryOperator::isAdditiveOp(op)) { in evalBinOpNN()
485 if (BinaryOperator::isAdditiveOp(lop)) { in evalBinOpNN()
DExprEngineC.cpp64 if (B->isAdditiveOp()) { in VisitBinaryOperator()
/external/clang/include/clang/AST/
DExpr.h2975 static bool isAdditiveOp(Opcode Opc) { return Opc == BO_Add || Opc==BO_Sub; } in isAdditiveOp() function
2976 bool isAdditiveOp() const { return isAdditiveOp(getOpcode()); } in isAdditiveOp() function
/external/clang/lib/Sema/
DSemaOpenMP.cpp4273 if (BO->isAdditiveOp()) { in CheckIncRHS()
6121 AtomicInnerBinOp->isAdditiveOp() || AtomicInnerBinOp->isShiftOp() || in checkBinaryOperation()
DSemaChecking.cpp6290 if (!BO || !BO->isAdditiveOp()) in ignoreLiteralAdditions()
DSemaDecl.cpp14583 if (!BO->isAdditiveOp()) in ValidDuplicateEnum()
DSemaExpr.cpp6905 return BinaryOperator::isAdditiveOp(Opc) || in IsArithmeticOp()
/external/clang/lib/AST/
DExprConstant.cpp7358 if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) { in VisitBinOp()