HomeSort by: relevance | last modified time | path
    Searched refs:isComparisonOp (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RangedConstraintManager.cpp 35 if (BinaryOperator::isComparisonOp(op) && op != BO_Cmp) {
44 assert(BinaryOperator::isComparisonOp(Op));
143 assert(BinaryOperator::isComparisonOp(Op) &&
153 if (BinaryOperator::isComparisonOp(SE->getOpcode()))
SimpleSValBuilder.cpp 155 if (BinaryOperator::isComparisonOp(op)) {
256 if (BinaryOperator::isComparisonOp(Op))
272 if (BinaryOperator::isComparisonOp(Op)) {
309 (!BinaryOperator::isComparisonOp(Op) ||
336 if (BinaryOperator::isComparisonOp(Op)) {
428 if (!BinaryOperator::isComparisonOp(op))
436 if (!BinaryOperator::isComparisonOp(op))
472 if (BinaryOperator::isComparisonOp(op)) {
656 if (!BinaryOperator::isComparisonOp(op))
707 if (!(BinaryOperator::isComparisonOp(op) || op == BO_Sub)
    [all...]
SVals.cpp 249 assert(BinaryOperator::isComparisonOp(Op) || Op == BO_Sub);
RangeConstraintManager.cpp 1111 if (!BinaryOperator::isComparisonOp(CurrentOP) || (CurrentOP == BO_Cmp))
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MismatchedIteratorChecker.cpp 194 if (!BO->isComparisonOp())
MallocOverflowSecurityChecker.cpp 228 if (E->isComparisonOp()) {
TestAfterDivZeroChecker.cpp 215 if (B->isComparisonOp()) {
IdenticalExprChecker.cpp 190 if (BinaryOperator::isComparisonOp(Op))
IteratorModeling.cpp 813 assert(BinaryOperator::isComparisonOp(
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SMTConv.h 359 if (BinaryOperator::isComparisonOp(Op) ||
454 *hasComparison = BinaryOperator::isComparisonOp(BSE->getOpcode());
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ReachableCode.cpp 243 IncludeIntegers &= (B->isLogicalOp() || B->isComparisonOp());
BodyFarm.cpp 125 BinaryOperator::isComparisonOp(Op));
CFG.cpp 1043 if (!LHS->isComparisonOp() || !RHS->isComparisonOp())
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 126 static bool isComparisonOp(OverloadedOperatorKind Opc) {
140 bool isComparisonOp() const { return isComparisonOp(getOperator()); }
330 bool isComparisonOp() const { return true; }
Expr.h 3828 static bool isComparisonOp(Opcode Opc) { return Opc >= BO_Cmp && Opc<=BO_NE; }
3829 bool isComparisonOp() const { return isComparisonOp(getOpcode()); }
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 2989 else if (BinaryOperator::isComparisonOp(Opcode))
12489 assert(E->isComparisonOp() && "expected comparison operator");
12588 assert(E->isComparisonOp() && "Invalid binary operator!");
12790 assert(E->isComparisonOp() && "unexpected nullptr operation");
12857 if (E->isComparisonOp()) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 5487 return Node.isComparisonOp();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 8606 return OP->isComparisonOp() || OP->isLogicalOp();
14238 bool isLeftComp = LHSBO && LHSBO->isComparisonOp();
14239 bool isRightComp = RHSBO && RHSBO->isComparisonOp();
14428 if (BinaryOperator::isComparisonOp(Opc))
SemaStmt.cpp 135 if (!Op->isComparisonOp())
SemaChecking.cpp 9799 if (!Size->isComparisonOp() && !Size->isLogicalOp())
12829 if (BO->isComparisonOp())

Completed in 89 milliseconds