/external/clang/lib/StaticAnalyzer/Core/ |
D | SimpleSValBuilder.cpp | 317 case BO_LE: in evalBinOpNN() 398 case BO_LE: in evalBinOpNN() 463 case BO_LE: in evalBinOpNN() 571 bool leftFirst = (op == BO_LT || op == BO_LE); in evalBinOpFieldRegionFieldRegion() 604 case BO_LE: in evalBinOpLL() 627 case BO_LE: in evalBinOpLL() 683 case BO_LE: in evalBinOpLL() 833 case BO_LE: in evalBinOpLL()
|
D | BasicValueFactory.cpp | 214 case BO_LE: in evalAPSInt()
|
D | BugReporterVisitors.cpp | 1368 case BO_LE: Op = BO_GE; break; in VisitTrueTest() 1369 case BO_GE: Op = BO_LE; break; in VisitTrueTest() 1377 case BO_GT: Op = BO_LE; break; in VisitTrueTest() 1378 case BO_LE: Op = BO_GT; break; in VisitTrueTest()
|
D | SimpleConstraintManager.cpp | 296 case BO_LE: in assumeSymRel()
|
/external/clang/include/clang/AST/ |
D | OperationKinds.h | 313 BO_LT, BO_GT, BO_LE, BO_GE, // [C99 6.5.8] Relational operators. enumerator
|
D | StmtVisitor.h | 59 case BO_LE: DISPATCH(BinLE, BinaryOperator); in Visit()
|
D | Expr.h | 3063 case BO_GT: return BO_LE; in negateComparisonOp() 3064 case BO_LE: return BO_GT; in negateComparisonOp() 3077 case BO_LE: return BO_GE; in reverseComparisonOp() 3078 case BO_GE: return BO_LE; in reverseComparisonOp()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | BoolAssignmentChecker.cpp | 122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal, in checkBind()
|
D | CStringChecker.cpp | 696 SVal evalLength = svalBuilder.evalBinOpNN(state, BO_LE, *strLn, in getCStringLengthForRegion() 1327 state, BO_LE, resultNL, *strLengthNL, cmpTy) in evalstrLengthCommon() 1333 state, BO_LE, resultNL, *maxlenValNL, cmpTy) in evalstrLengthCommon() 1552 SVal copiedLessThanBound = svalBuilder.evalBinOpNN(state, BO_LE, in evalStrcpyCommon() 1564 SVal copiedLessThanSrc = svalBuilder.evalBinOpNN(state, BO_LE, in evalStrcpyCommon()
|
D | IdenticalExprChecker.cpp | 258 if (((Op == BO_EQ) || (Op == BO_LE) || (Op == BO_GE))) in checkComparisonOp()
|
/external/clang/lib/Analysis/ |
D | ThreadSafetyCommon.cpp | 507 case BO_LE: return translateBinOp(til::BOP_Leq, BO, Ctx); in translateBinaryOperator()
|
D | CFG.cpp | 70 Op = BO_LE; in tryNormalizeBinaryOperator() 73 else if (Op == BO_LE) in tryNormalizeBinaryOperator() 745 case BO_LE: in analyzeLogicOperatorCondition()
|
/external/clang/lib/AST/ |
D | Expr.cpp | 141 case BO_LE: in isKnownToHaveBooleanValue() 1831 case BO_LE: return "<="; in getOpcodeStr() 1886 case OO_LessEqual: return BO_LE; in getOverloadedOpcode()
|
D | StmtProfile.cpp | 1029 BinaryOp = BO_LE; in DecodeOperatorCall()
|
D | ExprConstant.cpp | 1816 case BO_LE: Result = LHS <= RHS; return true; in handleIntIntBinOp() 7277 case BO_LE: in VisitBinaryOperator() 7498 case BO_LE: return Success(CompareLHS <= CompareRHS, E); in VisitBinaryOperator() 7551 return Success(Opcode == BO_EQ || Opcode == BO_LE || Opcode == BO_GE, E); in VisitBinaryOperator() 9252 case BO_LE: in CheckICE()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1657 BinaryOperator Cond(&IVRefExpr, &UBRefExpr, BO_LE, C.BoolTy, VK_RValue, in EmitSections() 2261 case BO_LE: in emitOMPAtomicRMW()
|
D | CGExprScalar.cpp | 2890 case BO_LE: in EmitCompare() 3540 case BO_LE: in EmitCompoundAssignmentLValue()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 2981 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_LE), in CheckCond() 3302 S, DefaultLoc, TestIsLessOp ? (TestIsStrictOp ? BO_LT : BO_LE) in BuildPreCond() 3884 ? SemaRef.BuildBinOp(CurScope, CondLoc, BO_LE, IV.get(), UB.get()) in CheckOpenMPLoop() 7380 case BO_LE: in ActOnOpenMPReductionClause()
|
D | SemaChecking.cpp | 6279 case BO_LE: in GetExprRange() 6529 } else if (op == BO_LE && IsZero(S, E->getLHS())) { in CheckTrivialUnsignedComparison() 6639 if (op == BO_LT || op == BO_LE) in DiagnoseOutOfRangeComparison() 6698 case BO_LE: in DiagnoseOutOfRangeComparison()
|
D | SemaExpr.cpp | 8648 || Opc == BO_LE in CheckCompareOperands() 10117 case tok::lessequal: Opc = BO_LE; break; in ConvertTokenKindToBinaryOpcode() 10352 case BO_LE: in CreateBuiltinBinOp()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 3000 new (Context) BinaryOperator(sizeofExpr, limit, BO_LE, Context->IntTy, in SynthMessageExpr()
|