Searched refs:BO_NE (Results 1 - 24 of 24) 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.h3002 static bool isEqualityOp(Opcode Opc) { return Opc == BO_EQ || Opc == BO_NE; }
3005 static bool isComparisonOp(Opcode Opc) { return Opc >= BO_LT && Opc<=BO_NE; }
3016 case BO_EQ: return BO_NE;
3017 case BO_NE: return BO_EQ;
3030 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.cpp1375 case BO_EQ: Op = BO_NE; break;
1376 case BO_NE: Op = BO_EQ; break;
1389 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.cpp2839 E->getOpcode() == BO_NE);
2843 CGF, LHS, RHS, MPT, E->getOpcode() == BO_NE);
2870 case BO_NE:
2973 assert(E->getOpcode() == BO_NE &&
3551 case BO_NE:
H A DCGStmtOpenMP.cpp1534 case BO_NE:
/external/clang/lib/Analysis/
H A DThreadSafety.cpp1361 if (BOP->getOpcode() == BO_EQ || BOP->getOpcode() == BO_NE) {
1362 if (BOP->getOpcode() == BO_NE)
H A DThreadSafetyCommon.cpp523 case BO_NE: return translateBinOp(til::BOP_Neq, BO, Ctx);
H A DCFG.cpp669 case BO_NE:
/external/clang/lib/AST/
H A DStmtProfile.cpp923 BinaryOp = BO_NE;
H A DExpr.cpp144 case BO_NE:
1797 case BO_NE: return "!=";
1848 case OO_ExclaimEqual: return BO_NE;
H A DExprConstant.cpp1737 case BO_NE: Result = LHS != RHS; return true;
6884 assert(E->getOpcode() == BO_NE &&
6898 assert(E->getOpcode() == BO_NE &&
6933 case BO_NE:
7010 return Success(E->getOpcode() == BO_NE, E);
7150 case BO_NE: return Success(CompareLHS != CompareRHS, E);
8880 case BO_NE:
/external/clang/lib/Sema/
H A DSemaChecking.cpp5790 case BO_NE:
6137 if (op == BO_EQ || op == BO_NE) {
6138 IsTrue = op == BO_NE;
6215 case BO_NE:
H A DSemaExpr.cpp6397 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr);
8404 case BO_NE: // e.g. array1 != array2
9843 case tok::exclaimequal: Opc = BO_NE; break;
10067 case BO_NE:
H A DSemaExprObjC.cpp3815 (Opc == BO_NE || Opc == BO_EQ)))
H A DSemaStmt.cpp136 IsNotEqual = Op->getOpcode() == BO_NE;
H A DSemaOpenMP.cpp5567 case BO_NE:
H A DSemaDeclCXX.cpp9893 BO_NE, S.Context.BoolTy,

Completed in 439 milliseconds