Searched refs:BO_GE (Results 1 - 20 of 20) sorted by relevance

/external/clang/include/clang/AST/
H A DOperationKinds.h313 BO_LT, BO_GT, BO_LE, BO_GE, // [C99 6.5.8] Relational operators. enumerator in enum:clang::BinaryOperatorKind
H A DStmtVisitor.h59 case BO_GE: DISPATCH(BinGE, BinaryOperator);
H A DExpr.h2995 static bool isRelationalOp(Opcode Opc) { return Opc >= BO_LT && Opc<=BO_GE; }
3008 case BO_LT: return BO_GE;
3011 case BO_GE: return BO_LT;
3023 case BO_LE: return BO_GE;
3024 case BO_GE: return BO_LE;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBoolAssignmentChecker.cpp86 svalBuilder.evalBinOp(state, BO_GE, *DV, zeroVal,
H A DArrayBoundCheckerV2.cpp146 = svalBuilder.evalBinOpNN(state, BO_GE, rawOffset.getByteOffset(),
H A DIdenticalExprChecker.cpp240 if (((Op == BO_EQ) || (Op == BO_LE) || (Op == BO_GE)))
H A DCStringChecker.cpp1386 svalBuilder.evalBinOpNN(state, BO_GE, *strLengthNL, *lenValNL, cmpTy)
1538 SVal sourceInResult = svalBuilder.evalBinOpNN(state, BO_GE,
1550 SVal destInResult = svalBuilder.evalBinOpNN(state, BO_GE,
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp318 case BO_GE:
399 case BO_GE:
464 case BO_GE:
605 case BO_GE:
632 case BO_GE:
679 case BO_GE:
835 case BO_GE:
H A DBasicValueFactory.cpp213 case BO_GE:
H A DSimpleConstraintManager.cpp254 case BO_GE:
H A DBugReporterVisitors.cpp1377 case BO_LE: Op = BO_GE; break;
1378 case BO_GE: Op = BO_LE; break;
1385 case BO_LT: Op = BO_GE; break;
1388 case BO_GE: Op = BO_LT; break;
/external/clang/lib/Analysis/
H A DCFG.cpp526 if (Bok == BO_GT || Bok == BO_GE) {
607 case BO_GE:
636 else if (BO1 == BO_GE)
641 BO1 = BO_GE;
657 else if (BO2 == BO_GE)
662 BO2 = BO_GE;
H A DThreadSafetyCommon.cpp323 case BO_GE: return translateBinOp(til::BOP_Leq, BO, Ctx, true);
/external/clang/lib/AST/
H A DStmtProfile.cpp793 BinaryOp = BO_GE;
H A DExpr.cpp142 case BO_GE:
1745 case BO_GE: return ">=";
1800 case OO_GreaterEqual: return BO_GE;
H A DExprConstant.cpp1718 case BO_GE: Result = LHS >= RHS; return true;
6668 case BO_GE:
6876 case BO_GE: return Success(CompareLHS >= CompareRHS, E);
6928 return Success(Opcode == BO_EQ || Opcode == BO_LE || Opcode == BO_GE, E);
8509 case BO_GE:
/external/clang/lib/Sema/
H A DSemaChecking.cpp5086 case BO_GE:
5327 } else if (op == BO_GE && IsZero(S, E->getRHS())) {
5438 if (op == BO_GT || op == BO_GE)
5445 else // op == BO_GT || op == BO_GE
5505 case BO_GE:
H A DSemaOpenMP.cpp1456 (BO->getOpcode() == BO_GT || BO->getOpcode() == BO_GE),
H A DSemaExpr.cpp7902 || Opc == BO_GE));
9183 case tok::greaterequal: Opc = BO_GE; break;
9373 case BO_GE:
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp2754 case BO_GE:
3383 case BO_GE:

Completed in 360 milliseconds