Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DOperationKinds.h318 BO_LAnd, // [C99 6.5.13] Logical AND operator. enumerator
DStmtVisitor.h66 case BO_LAnd: DISPATCH(BinLAnd, BinaryOperator); in Visit()
DExpr.h3035 static bool isLogicalOp(Opcode Opc) { return Opc == BO_LAnd || Opc==BO_LOr; } in isLogicalOp()
/external/clang/lib/Analysis/
DConsumed.cpp702 case BO_LAnd: in VisitBinaryOperator()
1319 if (BinOp->getOpcode() == BO_LAnd) { in splitState()
DThreadSafetyCommon.cpp527 case BO_LAnd: return translateBinOp(til::BOP_LogicAnd, BO, Ctx); in translateBinaryOperator()
DCFG.cpp788 if (B->getOpcode() == BO_LAnd) { in checkIncorrectLogicOperator()
1690 assert(B->getOpcode() == BO_LAnd); in VisitLogicalOperator()
4089 case BO_LAnd: in VisitBinaryOperator()
DThreadSafety.cpp1377 if (BOP->getOpcode() == BO_LAnd) { in getTrylockCallExpr()
/external/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp442 case BO_LAnd: in evalBinOpNN()
DExprEngineC.cpp518 assert(B->getOpcode() == BO_LAnd || in VisitLogicalExpr()
DPathDiagnostic.cpp724 if (Op == BO_LAnd || Op == BO_LOr) in getNextStmt()
DBugReporter.cpp751 if (B->getOpcode() == BO_LAnd) { in GenerateMinimalPathDiagnostic()
/external/clang/lib/Sema/
DSemaTemplateVariadic.cpp1023 case BO_LAnd: in BuildEmptyCXXFoldExpr()
DSemaExpr.cpp6397 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); in IsLogicOp()
8876 << (Opc == BO_LAnd ? "&&" : "||"); in CheckLogicalOperands()
8879 << (Opc == BO_LAnd ? "&" : "|") in CheckLogicalOperands()
8883 Opc == BO_LAnd ? "&" : "|"); in CheckLogicalOperands()
8884 if (Opc == BO_LAnd) in CheckLogicalOperands()
9848 case tok::ampamp: Opc = BO_LAnd; break; in ConvertTokenKindToBinaryOpcode()
10076 case BO_LAnd: in CreateBuiltinBinOp()
10229 assert(Bop->getOpcode() == BO_LAnd); in EmitDiagnosticForLogicalAndInLogicalOr()
10258 if (Bop->getOpcode() == BO_LAnd) { in DiagnoseLogicalAndInLogicalOrLHS()
10269 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) in DiagnoseLogicalAndInLogicalOrLHS()
[all …]
DSemaOpenMP.cpp5253 BOK = BO_LAnd; in ActOnOpenMPReductionClause()
5489 case BO_LAnd: in ActOnOpenMPReductionClause()
5603 if (BOK != BO_LOr && BOK != BO_LAnd) { in ActOnOpenMPReductionClause()
DAnalysisBasedWarnings.cpp750 if ((BO->getOpcode() == BO_LAnd && I->Output) || in DiagUninitUse()
DSemaChecking.cpp5783 case BO_LAnd: in GetExprRange()
6933 bool IsLogicalAndOperator = BO && BO->getOpcode() == BO_LAnd; in AnalyzeImplicitConversions()
DSemaDeclAttr.cpp483 if (E->getOpcode() == BO_LAnd || E->getOpcode() == BO_LOr) in isCapabilityExpr()
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp224 if (BO->getOpcode() == BO_LAnd) in getHashType()
DCodeGenFunction.cpp1032 if (CondBOp->getOpcode() == BO_LAnd) { in EmitBranchOnBoolExpr()
DCGStmtOpenMP.cpp1526 case BO_LAnd: in emitOMPAtomicRMW()
DCGExprScalar.cpp3555 case BO_LAnd: in EmitCompoundAssignmentLValue()
/external/clang/lib/AST/
DExpr.cpp145 case BO_LAnd: // AND operator. in isKnownToHaveBooleanValue()
1801 case BO_LAnd: return "&&"; in getOpcodeStr()
1851 case OO_AmpAmp: return BO_LAnd; in getOverloadedOpcode()
2084 case BO_LAnd: in isUnusedResultAWarning()
DStmtProfile.cpp935 BinaryOp = BO_LAnd; in DecodeOperatorCall()
DExprConstant.cpp8915 case BO_LAnd: in CheckICE()
8923 if ((Exp->getOpcode() == BO_LAnd) != in CheckICE()
/external/v8/tools/gcmole/
Dgcmole.cc668 case clang::BO_LAnd: in DECL_VISIT_EXPR()