Searched refs:UOp (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPointerArithChecker.cpp63 void checkPreStmt(const UnaryOperator *UOp, CheckerContext &C) const;
296 void PointerArithChecker::checkPreStmt(const UnaryOperator *UOp, argument
298 if (!UOp->isIncrementDecrementOp() || !UOp->getType()->isPointerType())
300 reportPointerArithMisuse(UOp->getSubExpr(), C, true);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp513 void VisitUnaryOperator(const UnaryOperator *UOp);
896 void ConsumedStmtVisitor::VisitUnaryOperator(const UnaryOperator *UOp) { argument
897 InfoEntry Entry = findInfo(UOp->getSubExpr());
900 switch (UOp->getOpcode()) {
902 PropagationMap.insert(PairType(UOp, Entry->second));
907 PropagationMap.insert(PairType(UOp, Entry->second.invertTest()));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp682 if (const auto *UOp = dyn_cast<UnaryOperator>(ArgExp))
683 if (UOp->getOpcode() == UO_AddrOf)
684 if (const auto *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))

Completed in 89 milliseconds