Home
last modified time | relevance | path

Searched refs:BO_LOr (Results 1 – 23 of 23) sorted by relevance

/external/clang/include/clang/AST/
DOperationKinds.h319 BO_LOr, // [C99 6.5.14] Logical OR operator. enumerator
DStmtVisitor.h67 case BO_LOr : DISPATCH(BinLOr, BinaryOperator); in Visit()
DExpr.h3031 static bool isLogicalOp(Opcode Opc) { return Opc == BO_LAnd || Opc==BO_LOr; } in isLogicalOp()
/external/clang/lib/Analysis/
DConsumed.cpp703 case BO_LOr : { in VisitBinaryOperator()
727 static_cast<EffectiveOp>(BinOp->getOpcode() == BO_LOr), LTest, RTest))); in VisitBinaryOperator()
1326 } else if (BinOp->getOpcode() == BO_LOr) { in splitState()
DCFG.cpp800 if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) in evaluateAsBooleanConditionNoCache()
805 if (Bop->getOpcode() == BO_LOr) in evaluateAsBooleanConditionNoCache()
815 if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr)) in evaluateAsBooleanConditionNoCache()
1592 if (B->getOpcode() == BO_LOr) in VisitLogicalOperator()
1618 if (B->getOpcode() == BO_LOr) { in VisitLogicalOperator()
3549 if (KnownVal.isKnown() && (E->getOpcode() == BO_LOr)) in VisitBinaryOperatorForTemporaryDtors()
3554 if (E->getOpcode() == BO_LOr) { in VisitBinaryOperatorForTemporaryDtors()
4006 case BO_LOr: in VisitBinaryOperator()
DThreadSafetyCommon.cpp330 case BO_LOr: return translateBinOp(til::BOP_LogicOr, BO, Ctx); in translateBinaryOperator()
DThreadSafety.cpp1725 if (BOP->getOpcode() == BO_LOr) { in getTrylockCallExpr()
/external/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp443 case BO_LOr: in evalBinOpNN()
DExprEngineC.cpp519 B->getOpcode() == BO_LOr); in VisitLogicalExpr()
DPathDiagnostic.cpp721 if (Op == BO_LAnd || Op == BO_LOr) in getNextStmt()
DBugReporter.cpp775 assert(B->getOpcode() == BO_LOr); in GenerateMinimalPathDiagnostic()
/external/clang/lib/AST/
DExpr.cpp146 case BO_LOr: // Logical OR operator. in isKnownToHaveBooleanValue()
1752 case BO_LOr: return "||"; in getOpcodeStr()
1802 case OO_PipePipe: return BO_LOr; in getOverloadedOpcode()
2035 case BO_LOr: in isUnusedResultAWarning()
DStmtProfile.cpp801 BinaryOp = BO_LOr; in DecodeOperatorCall()
DExprConstant.cpp6417 if (LHSAsBool == (E->getOpcode() == BO_LOr)) { in VisitBinOpLHSOnly()
6464 if (E->getOpcode() == BO_LOr) in VisitBinOp()
6473 if (rhsResult == (E->getOpcode() == BO_LOr)) in VisitBinOp()
8547 case BO_LOr: { in CheckICE()
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp347 if (BO->getOpcode() == BO_LOr) in getHashType()
DCodeGenFunction.cpp1014 if (CondBOp->getOpcode() == BO_LOr) { in EmitBranchOnBoolExpr()
DCGExprScalar.cpp3390 case BO_LOr: in EmitCompoundAssignmentLValue()
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc669 case clang::BO_LOr: in DECL_VISIT_EXPR()
/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp756 (BO->getOpcode() == BO_LOr && !I->Output)) in DiagUninitUse()
DSemaExpr.cpp6012 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); in IsLogicOp()
9191 case tok::pipepipe: Opc = BO_LOr; break; in ConvertTokenKindToBinaryOpcode()
9388 case BO_LOr: in CreateBuiltinBinOp()
9576 } else if (Bop->getOpcode() == BO_LOr) { in DiagnoseLogicalAndInLogicalOrLHS()
9669 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) { in DiagnoseBinOpPrecedence()
DSemaOpenMP.cpp2991 BOK = BO_LOr; in ActOnOpenMPReductionClause()
DSemaDeclAttr.cpp439 if (E->getOpcode() == BO_LAnd || E->getOpcode() == BO_LOr) in isCapabilityExpr()
DSemaChecking.cpp5082 case BO_LOr: in GetExprRange()