Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp185 if (BinaryOperator::isBitwiseOp(Op)) in VisitBinaryOperator()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h3373 static bool isBitwiseOp(Opcode Opc) { return Opc >= BO_And && Opc <= BO_Or; } in isBitwiseOp() function
3374 bool isBitwiseOp() const { return isBitwiseOp(getOpcode()); } in isBitwiseOp() function
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp804 if (BO->isShiftOp() || BO->isBitwiseOp()) in UseNSOptionsMacro()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp12519 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence()
12520 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence()
12618 if (Bop->isBitwiseOp() && Bop->getOpcode() < Opc) { in DiagnoseBitwiseOpInBitwiseOp()
12676 if (BinaryOperator::isBitwiseOp(Opc)) in DiagnoseBinOpPrecedence()
H A DSemaOpenMP.cpp6392 AtomicInnerBinOp->isBitwiseOp()) { in checkBinaryOperation()