Searched refs:BO_NE (Results 1 - 22 of 22) sorted by relevance

/external/clang/include/clang/AST/
H A DOperationKinds.h314 BO_EQ, BO_NE, // [C99 6.5.9] Equality operators. enumerator in enum:clang::BinaryOperatorKind
H A DStmtVisitor.h61 case BO_NE: DISPATCH(BinNE, BinaryOperator);
H A DExpr.h2998 static bool isEqualityOp(Opcode Opc) { return Opc == BO_EQ || Opc == BO_NE; }
3001 static bool isComparisonOp(Opcode Opc) { return Opc >= BO_LT && Opc<=BO_NE; }
3012 case BO_EQ: return BO_NE;
3013 case BO_NE: return BO_EQ;
3026 case BO_NE:
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp322 case BO_NE:
355 case BO_NE:
403 case BO_NE:
466 case BO_NE:
564 if (op == BO_NE)
607 case BO_NE:
630 case BO_NE:
681 case BO_NE:
747 case BO_NE:
764 case BO_NE
[all...]
H A DBasicValueFactory.cpp219 case BO_NE:
H A DSimpleConstraintManager.cpp248 case BO_NE:
H A DBugReporterVisitors.cpp1383 case BO_EQ: Op = BO_NE; break;
1384 case BO_NE: Op = BO_EQ; break;
1397 case BO_NE:
H A DSValBuilder.cpp418 return makeNonLoc(Sym, BO_NE, BVF.getValue(0, Sym->getType()), castTy);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp216 if ((Op == BO_EQ) || (Op == BO_NE)) {
223 if ((Op == BO_EQ) || (Op == BO_NE)) {
H A DIvarInvalidationChecker.cpp680 Opcode != BO_NE)
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp2699 E->getOpcode() == BO_NE);
2703 CGF, LHS, RHS, MPT, E->getOpcode() == BO_NE);
2730 case BO_NE:
2815 assert(E->getOpcode() == BO_NE &&
3385 case BO_NE:
/external/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp325 case BO_NE: return translateBinOp(til::BOP_Neq, BO, Ctx);
H A DThreadSafety.cpp1705 if (BOP->getOpcode() == BO_EQ || BOP->getOpcode() == BO_NE) {
1706 if (BOP->getOpcode() == BO_NE)
H A DCFG.cpp599 case BO_NE:
/external/clang/lib/AST/
H A DStmtProfile.cpp785 BinaryOp = BO_NE;
H A DExpr.cpp144 case BO_NE:
1747 case BO_NE: return "!=";
1798 case OO_ExclaimEqual: return BO_NE;
H A DExprConstant.cpp1720 case BO_NE: Result = LHS != RHS; return true;
6624 assert(E->getOpcode() == BO_NE &&
6638 assert(E->getOpcode() == BO_NE &&
6673 case BO_NE:
6738 return Success(E->getOpcode() == BO_NE, E);
6878 case BO_NE: return Success(CompareLHS != CompareRHS, E);
8511 case BO_NE:
/external/clang/lib/Sema/
H A DSemaChecking.cpp5088 case BO_NE:
5433 if (op == BO_EQ || op == BO_NE) {
5434 IsTrue = op == BO_NE;
5511 case BO_NE:
H A DSemaExpr.cpp6012 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr);
7912 case BO_NE: // e.g. array1 != array2
9185 case tok::exclaimequal: Opc = BO_NE; break;
9378 case BO_NE:
H A DSemaExprObjC.cpp3754 (Opc == BO_NE || Opc == BO_EQ)))
H A DSemaStmt.cpp132 IsNotEqual = Op->getOpcode() == BO_NE;
H A DSemaDeclCXX.cpp9394 BO_NE, S.Context.BoolTy,

Completed in 425 milliseconds