Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DCheckSecuritySyntaxOnly.cpp35 class WalkAST : public StmtVisitor<WalkAST> { class
43 WalkAST(BugReporter &br) : BR(br), II_setid(), in WalkAST() function in __anonbcda2f520111::WalkAST
58 typedef void (WalkAST::*FnCheck)(const CallExpr *,
78 IdentifierInfo *WalkAST::getIdentifier(IdentifierInfo *& II, const char *str) { in getIdentifier()
89 void WalkAST::VisitChildren(Stmt *S) { in VisitChildren()
95 void WalkAST::VisitCallExpr(CallExpr *CE) { in VisitCallExpr()
112 .Case("gets", &WalkAST::checkCall_gets) in VisitCallExpr()
113 .Case("getpw", &WalkAST::checkCall_getpw) in VisitCallExpr()
114 .Case("mktemp", &WalkAST::checkCall_mktemp) in VisitCallExpr()
115 .Cases("strcpy", "__strcpy_chk", &WalkAST::checkCall_strcpy) in VisitCallExpr()
[all …]
DCheckSizeofPointer.cpp24 class WalkAST : public StmtVisitor<WalkAST> { class
28 WalkAST(BugReporter &br) : BR(br) {} in WalkAST() function in __anonc46a76020111::WalkAST
35 void WalkAST::VisitChildren(Stmt *S) { in VisitChildren()
42 void WalkAST::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E) { in VisitUnaryExprOrTypeTraitExpr()
79 WalkAST walker(BR); in checkASTCodeBody()