Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DOperationKinds.h277 BO_And, // [C99 6.5.10] Bitwise AND operator. enumerator
DStmtVisitor.h63 case BO_And: DISPATCH(BinAnd, BinaryOperator); in Visit()
DExpr.h2682 static bool isBitwiseOp(Opcode Opc) { return Opc >= BO_And && Opc <= BO_Or; } in isBitwiseOp()
/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.cpp96 SVal maskedFlagsUC = C.getSValBuilder().evalBinOpNN(state, BO_And, in CheckOpen()
/external/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp241 case BO_And: in MakeSymIntVal()
294 case BO_And: in evalBinOpNN()
460 case BO_And: in evalBinOpNN()
DSimpleConstraintManager.cpp35 case BO_And: in canReasonAbout()
DBasicValueFactory.cpp227 case BO_And: in evalAPSInt()
DSymbolManager.cpp45 case BO_And: os << '&' ; break; in print()
DExprEngine.cpp2957 case BO_AndAssign: Op = BO_And; break; in VisitBinaryOperator()
/external/clang/lib/AST/
DExpr.cpp73 case BO_And: // Bitwise AND operator. in isKnownToHaveBooleanValue()
1221 case BO_And: return "&"; in getOpcodeStr()
1253 case OO_Amp: return BO_And; in getOverloadedOpcode()
DStmtProfile.cpp532 BinaryOp = BO_And; in DecodeOperatorCall()
DExprConstant.cpp1543 case BO_And: return Success(Result.getInt() & RHS, E); in VisitBinaryOperator()
2955 case BO_And: in CheckICE()
/external/clang/lib/Sema/
DSemaExpr.cpp7316 case tok::amp: Opc = BO_And; break; in ConvertTokenKindToBinaryOpcode()
7442 Opc == BO_Sub || Opc == BO_Shl || Opc == BO_Shr || Opc == BO_And || in CreateBuiltinBinOp()
7513 case BO_And: in CreateBuiltinBinOp()
7641 assert(Bop->getOpcode() == BO_And); in EmitDiagnosticForBitwiseAndInBitwiseOr()
7718 if (Bop->getOpcode() == BO_And) in DiagnoseBitwiseAndInBitwiseOr()
DSemaChecking.cpp2613 case BO_And: in GetExprRange()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp2742 case BO_And: in EmitCompoundAssignmentLValue()