Home
last modified time | relevance | path

Searched refs:BO_And (Results 1 – 17 of 17) sorted by relevance

/external/clang/include/clang/AST/
DOperationKinds.h309 BO_And, // [C99 6.5.10] Bitwise AND operator. enumerator
DStmtVisitor.h62 case BO_And: DISPATCH(BinAnd, BinaryOperator); in Visit()
DExpr.h2850 static bool isBitwiseOp(Opcode Opc) { return Opc >= BO_And && Opc <= BO_Or; } in isBitwiseOp()
2879 return Opcode(unsigned(Opc) - BO_AndAssign + BO_And); in getOpForCompoundAssignment()
/external/clang/lib/StaticAnalyzer/Checkers/
DIdempotentOperationChecker.cpp214 case BO_And: in checkPreStmt()
277 case BO_And: in checkPreStmt()
309 case BO_And: in checkPreStmt()
DUnixAPIChecker.cpp113 SVal maskedFlagsUC = C.getSValBuilder().evalBinOpNN(state, BO_And, in CheckOpen()
/external/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp247 case BO_And: in MakeSymIntVal()
325 case BO_And: in evalBinOpNN()
401 case BO_And: in evalBinOpNN()
DBasicValueFactory.cpp224 case BO_And: in evalAPSInt()
DSimpleConstraintManager.cpp34 case BO_And: in canReasonAbout()
DSymbolManager.cpp47 case BO_And: os << '&' ; break; in print()
DExprEngineC.cpp106 case BO_AndAssign: Op = BO_And; break; in VisitBinaryOperator()
/external/clang/lib/AST/
DStmtProfile.cpp559 BinaryOp = BO_And; in DecodeOperatorCall()
DExpr.cpp90 case BO_And: // Bitwise AND operator. in isKnownToHaveBooleanValue()
1590 case BO_And: return "&"; in getOpcodeStr()
1622 case OO_Amp: return BO_And; in getOverloadedOpcode()
DExprConstant.cpp4691 case BO_And: return Success(LHS & RHS, E, Result); in VisitBinOp()
6632 case BO_And: in CheckICE()
/external/clang/lib/Sema/
DSemaExpr.cpp8138 case tok::amp: Opc = BO_And; break; in ConvertTokenKindToBinaryOpcode()
8289 case BO_And: in CreateBuiltinBinOp()
8421 assert(Bop->getOpcode() == BO_And); in EmitDiagnosticForBitwiseAndInBitwiseOr()
8498 if (Bop->getOpcode() == BO_And) in DiagnoseBitwiseAndInBitwiseOr()
DSemaChecking.cpp4056 case BO_And: in GetExprRange()
/external/clang/lib/Analysis/
DCFG.cpp476 case BO_And: { in tryEvaluateBool()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp2844 case BO_And: in EmitCompoundAssignmentLValue()