Lines Matching refs:Stmt
18 class Stmt; variable
24 ParentMap(Stmt* ASTRoot);
30 void addStmt(Stmt* S);
35 void setParent(const Stmt *S, const Stmt *Parent);
37 Stmt *getParent(Stmt*) const;
38 Stmt *getParentIgnoreParens(Stmt *) const;
39 Stmt *getParentIgnoreParenCasts(Stmt *) const;
40 Stmt *getParentIgnoreParenImpCasts(Stmt *) const;
41 Stmt *getOuterParenParent(Stmt *) const;
43 const Stmt *getParent(const Stmt* S) const { in getParent()
44 return getParent(const_cast<Stmt*>(S)); in getParent()
47 const Stmt *getParentIgnoreParens(const Stmt *S) const { in getParentIgnoreParens()
48 return getParentIgnoreParens(const_cast<Stmt*>(S)); in getParentIgnoreParens()
51 const Stmt *getParentIgnoreParenCasts(const Stmt *S) const { in getParentIgnoreParenCasts()
52 return getParentIgnoreParenCasts(const_cast<Stmt*>(S)); in getParentIgnoreParenCasts()
55 bool hasParent(Stmt* S) const { in hasParent()