Home
last modified time | relevance | path

Searched refs:BO_Rem (Results 1 – 14 of 14) sorted by relevance

/external/clang/include/clang/AST/
DOperationKinds.h307 BO_Mul, BO_Div, BO_Rem, // [C99 6.5.5] Multiplicative operators. enumerator
DStmtVisitor.h50 case BO_Rem: DISPATCH(BinRem, BinaryOperator); in Visit()
DExpr.h2956 bool isMultiplicativeOp() const { return Opc >= BO_Mul && Opc <= BO_Rem; } in isMultiplicativeOp()
/external/clang/lib/StaticAnalyzer/Checkers/
DDivZeroChecker.cpp52 Op != BO_Rem && in checkPreStmt()
/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp159 case BO_Rem: in evalAPSInt()
DSimpleConstraintManager.cpp42 case BO_Rem: in canReasonAbout()
DSimpleSValBuilder.cpp209 case BO_Rem: in MakeSymIntVal()
DExprEngineC.cpp104 case BO_RemAssign: Op = BO_Rem; break; in VisitBinaryOperator()
/external/clang/lib/AST/
DStmtProfile.cpp584 BinaryOp = BO_Rem; in DecodeOperatorCall()
DExpr.cpp1689 case BO_Rem: return "%"; in getOpcodeStr()
1730 case OO_Percent: return BO_Rem; in getOverloadedOpcode()
DExprConstant.cpp1504 case BO_Rem: in handleIntIntBinOp()
1513 Result = (Opcode == BO_Rem ? LHS % RHS : LHS / RHS); in handleIntIntBinOp()
8270 case BO_Rem: in CheckICE()
8288 Exp->getOpcode() == BO_Rem) { in CheckICE()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp861 } else if (Opcode == BO_Div || Opcode == BO_Rem) { in EmitBinOpCheck()
3260 case BO_Rem: in EmitCompoundAssignmentLValue()
/external/clang/lib/Sema/
DSemaExpr.cpp8743 case tok::percent: Opc = BO_Rem; break; in ConvertTokenKindToBinaryOpcode()
8925 case BO_Rem: in CreateBuiltinBinOp()
DSemaChecking.cpp4593 case BO_Rem: { in GetExprRange()