Home
last modified time | relevance | path

Searched refs:BO_LAnd (Results 1 – 18 of 18) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DIdempotentOperationChecker.cpp217 case BO_LAnd: in checkPreStmt()
238 case BO_LAnd: in checkPreStmt()
254 case BO_LAnd: in checkPreStmt()
282 case BO_LAnd: in checkPreStmt()
314 case BO_LAnd: in checkPreStmt()
/external/clang/include/clang/AST/
DOperationKinds.h308 BO_LAnd, // [C99 6.5.13] Logical AND operator. enumerator
DStmtVisitor.h65 case BO_LAnd: DISPATCH(BinLAnd, BinaryOperator); in Visit()
DExpr.h2850 static bool isLogicalOp(Opcode Opc) { return Opc == BO_LAnd || Opc==BO_LOr; } in isLogicalOp()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineC.cpp441 assert(B->getOpcode() == BO_LAnd || in VisitLogicalExpr()
484 X = svalBuilder.makeIntVal(B->getOpcode() == BO_LAnd ? 0U : 1U, in VisitLogicalExpr()
DSimpleSValBuilder.cpp421 case BO_LAnd: in evalBinOpNN()
DBugReporter.cpp84 if (Op == BO_LAnd || Op == BO_LOr) in GetNextStmt()
599 if (B->getOpcode() == BO_LAnd) { in GenerateMinimalPathDiagnostic()
DExprEngine.cpp1090 assert (Op == BO_LAnd || Op == BO_LOr); in MarkBranch()
1098 const Expr *Ex = (Op == BO_LAnd && branchTaken) || in MarkBranch()
/external/clang/lib/Analysis/
DUninitializedValues.cpp632 if (b->getOpcode() == BO_LAnd) { in runOnBlock()
DCFG.cpp1210 assert(B->getOpcode() == BO_LAnd); in VisitBinaryOperator()
3028 assert (E->getOpcode() == BO_LAnd); in VisitBinaryOperatorForTemporaryDtors()
3548 case BO_LAnd: in VisitBinaryOperator()
/external/clang/lib/AST/
DExpr.cpp71 case BO_LAnd: // AND operator. in isKnownToHaveBooleanValue()
1457 case BO_LAnd: return "&&"; in getOpcodeStr()
1507 case OO_AmpAmp: return BO_LAnd; in getOverloadedOpcode()
1724 case BO_LAnd: in isUnusedResultAWarning()
DStmtProfile.cpp646 BinaryOp = BO_LAnd; in DecodeOperatorCall()
DExprConstant.cpp6706 case BO_LAnd: in CheckICE()
6714 if ((Exp->getOpcode() == BO_LAnd) != in CheckICE()
/external/clang/lib/Sema/
DSemaExpr.cpp5032 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); in IsLogicOp()
7071 << (Opc == BO_LAnd ? "&&" : "||"); in CheckLogicalOperands()
7074 << (Opc == BO_LAnd ? "&" : "|") in CheckLogicalOperands()
7078 Opc == BO_LAnd ? "&" : "|"); in CheckLogicalOperands()
7079 if (Opc == BO_LAnd) in CheckLogicalOperands()
7798 case tok::ampamp: Opc = BO_LAnd; break; in ConvertTokenKindToBinaryOpcode()
7952 case BO_LAnd: in CreateBuiltinBinOp()
8093 assert(Bop->getOpcode() == BO_LAnd); in EmitDiagnosticForLogicalAndInLogicalOr()
8119 if (Bop->getOpcode() == BO_LAnd) { in DiagnoseLogicalAndInLogicalOrLHS()
8130 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) in DiagnoseLogicalAndInLogicalOrLHS()
[all …]
DSemaChecking.cpp3597 case BO_LAnd: in GetExprRange()
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp579 if (CondBOp->getOpcode() == BO_LAnd) { in EmitBranchOnBoolExpr()
DCGExprScalar.cpp2849 case BO_LAnd: in EmitCompoundAssignmentLValue()
/external/v8/tools/gcmole/
Dgcmole.cc679 case clang::BO_LAnd: in DECL_VISIT_EXPR()