Searched refs:BO_LT (Results 1 - 18 of 18) 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.h56 case BO_LT: DISPATCH(BinLT, BinaryOperator);
H A DExpr.h2995 static bool isRelationalOp(Opcode Opc) { return Opc >= BO_LT && Opc<=BO_GE; }
3001 static bool isComparisonOp(Opcode Opc) { return Opc >= BO_LT && Opc<=BO_NE; }
3008 case BO_LT: return BO_GE;
3011 case BO_GE: return BO_LT;
3021 case BO_LT: return BO_GT;
3022 case BO_GT: return BO_LT;
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp320 case BO_LT:
396 case BO_LT:
461 case BO_LT:
571 bool leftFirst = (op == BO_LT || op == BO_LE);
608 case BO_LT:
628 case BO_LT:
682 case BO_LT:
829 case BO_LT:
H A DBasicValueFactory.cpp204 case BO_LT:
H A DSimpleConstraintManager.cpp257 case BO_LT:
H A DBugReporterVisitors.cpp1375 case BO_LT: Op = BO_GT; break;
1376 case BO_GT: Op = BO_LT; break;
1385 case BO_LT: Op = BO_GE; break;
1388 case BO_GE: Op = BO_LT; break;
H A DProgramState.cpp340 SVal inBound = svalBuilder.evalBinOpNN(this, BO_LT, newIdx.castAs<NonLoc>(),
/external/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundCheckerV2.cpp115 svalBuilder.evalBinOpNN(state, BO_LT, rawOffset.getByteOffset(), *NV,
/external/clang/lib/Analysis/
H A DCFG.cpp601 case BO_LT:
635 BO1 = BO_LT;
638 else if (BO1 == BO_LT)
656 BO2 = BO_LT;
659 else if (BO2 == BO_LT)
H A DThreadSafetyCommon.cpp320 case BO_LT: return translateBinOp(til::BOP_Lt, BO, Ctx);
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp1451 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_LE),
1452 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
1457 (BO->getOpcode() == BO_LT || BO->getOpcode() == BO_GT),
2998 BOK = BO_LT;
3098 if ((BOK == BO_GT || BOK == BO_LT) &&
H A DSemaChecking.cpp5083 case BO_LT:
5323 if (op == BO_LT && IsZero(S, E->getRHS())) {
5440 else // op == BO_LT || op == BO_LE
5443 if (op == BO_LT || op == BO_LE)
5496 case BO_LT:
H A DSemaExpr.cpp6012 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr);
9182 case tok::less: Opc = BO_LT; break;
9372 case BO_LT:
/external/clang/lib/AST/
H A DStmtProfile.cpp725 BinaryOp = BO_LT;
H A DExpr.cpp139 case BO_LT: // Relational operators.
1742 case BO_LT: return "<";
1783 case OO_Less: return BO_LT;
H A DExprConstant.cpp1715 case BO_LT: Result = LHS < RHS; return true;
6662 case BO_LT:
6873 case BO_LT: return Success(CompareLHS < CompareRHS, E);
8506 case BO_LT:
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp2734 case BO_LT:
3380 case BO_LT:

Completed in 311 milliseconds