Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocSizeofChecker.cpp31 typedef std::pair<const TypeSourceInfo *, const CallExpr *> TypeCallPair; typedef
35 : public ConstStmtVisitor<CastedAllocFinder, TypeCallPair> {
61 TypeCallPair AllocCall = Visit(S); in VisitChild()
73 TypeCallPair VisitCastExpr(const CastExpr *E) { in VisitCastExpr()
77 TypeCallPair VisitExplicitCastExpr(const ExplicitCastExpr *E) { in VisitExplicitCastExpr()
78 return TypeCallPair(E->getTypeInfoAsWritten(), in VisitExplicitCastExpr()
82 TypeCallPair VisitParenExpr(const ParenExpr *E) { in VisitParenExpr()
86 TypeCallPair VisitStmt(const Stmt *S) { in VisitStmt()
88 return TypeCallPair(); in VisitStmt()
91 TypeCallPair VisitCallExpr(const CallExpr *E) { in VisitCallExpr()
[all …]