Home
last modified time | relevance | path

Searched refs:isBitwiseOp (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp184 if (BinaryOperator::isBitwiseOp(Op)) in VisitBinaryOperator()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3886 static bool isBitwiseOp(Opcode Opc) { return Opc >= BO_And && Opc <= BO_Or; } in isBitwiseOp() function
3887 bool isBitwiseOp() const { return isBitwiseOp(getOpcode()); } in isBitwiseOp() function
/freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp805 if (BO->isShiftOp() || BO->isBitwiseOp()) in UseNSOptionsMacro()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp8701 unsigned DiagID = BinaryOperator::isBitwiseOp(CondOpcode) in DiagnoseConditionalPrecedence()
14366 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence()
14367 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence()
14465 if (Bop->isBitwiseOp() && Bop->getOpcode() < Opc) { in DiagnoseBitwiseOpInBitwiseOp()
14523 if (BinaryOperator::isBitwiseOp(Opc)) in DiagnoseBinOpPrecedence()
H A DSemaOpenMP.cpp10508 AtomicInnerBinOp->isBitwiseOp()) { in checkBinaryOperation()