Home
last modified time | relevance | path

Searched refs:BO_LE (Results 1 – 21 of 21) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp317 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()
DBasicValueFactory.cpp214 case BO_LE: in evalAPSInt()
DBugReporterVisitors.cpp1368 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()
DSimpleConstraintManager.cpp296 case BO_LE: in assumeSymRel()
/external/clang/include/clang/AST/
DOperationKinds.h313 BO_LT, BO_GT, BO_LE, BO_GE, // [C99 6.5.8] Relational operators. enumerator
DStmtVisitor.h59 case BO_LE: DISPATCH(BinLE, BinaryOperator); in Visit()
DExpr.h3063 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/
DBoolAssignmentChecker.cpp122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal, in checkBind()
DCStringChecker.cpp696 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()
DIdenticalExprChecker.cpp258 if (((Op == BO_EQ) || (Op == BO_LE) || (Op == BO_GE))) in checkComparisonOp()
/external/clang/lib/Analysis/
DThreadSafetyCommon.cpp507 case BO_LE: return translateBinOp(til::BOP_Leq, BO, Ctx); in translateBinaryOperator()
DCFG.cpp70 Op = BO_LE; in tryNormalizeBinaryOperator()
73 else if (Op == BO_LE) in tryNormalizeBinaryOperator()
745 case BO_LE: in analyzeLogicOperatorCondition()
/external/clang/lib/AST/
DExpr.cpp141 case BO_LE: in isKnownToHaveBooleanValue()
1831 case BO_LE: return "<="; in getOpcodeStr()
1886 case OO_LessEqual: return BO_LE; in getOverloadedOpcode()
DStmtProfile.cpp1029 BinaryOp = BO_LE; in DecodeOperatorCall()
DExprConstant.cpp1816 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/
DCGStmtOpenMP.cpp1657 BinaryOperator Cond(&IVRefExpr, &UBRefExpr, BO_LE, C.BoolTy, VK_RValue, in EmitSections()
2261 case BO_LE: in emitOMPAtomicRMW()
DCGExprScalar.cpp2890 case BO_LE: in EmitCompare()
3540 case BO_LE: in EmitCompoundAssignmentLValue()
/external/clang/lib/Sema/
DSemaOpenMP.cpp2981 (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()
DSemaChecking.cpp6279 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()
DSemaExpr.cpp8648 || 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/
DRewriteObjC.cpp3000 new (Context) BinaryOperator(sizeofExpr, limit, BO_LE, Context->IntTy, in SynthMessageExpr()