Searched defs:TypeCallPair (Results 1 - 1 of 1) sorted by relevance

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

Completed in 127 milliseconds