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

/external/clang/include/clang/AST/
H A DStmtCXX.h74 Stmt const * const *getStmts() const { function in class:clang::CXXTryStmt
77 Stmt **getStmts() { function in class:clang::CXXTryStmt
93 return getStmts()[NumHandlers]->getLocEnd();
97 return cast<CompoundStmt>(getStmts()[0]);
100 return cast<CompoundStmt>(getStmts()[0]);
105 return cast<CXXCatchStmt>(getStmts()[i + 1]);
108 return cast<CXXCatchStmt>(getStmts()[i + 1]);
116 return child_range(getStmts(), getStmts() + getNumHandlers() + 1);
H A DStmtObjC.h169 Stmt **getStmts() { return reinterpret_cast<Stmt **> (this + 1); } function in class:clang::ObjCAtTryStmt
170 const Stmt* const *getStmts() const { function in class:clang::ObjCAtTryStmt
196 const Stmt *getTryBody() const { return getStmts()[0]; }
197 Stmt *getTryBody() { return getStmts()[0]; }
198 void setTryBody(Stmt *S) { getStmts()[0] = S; }
207 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
213 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
219 getStmts()[I + 1] = S;
227 return cast_or_null<ObjCAtFinallyStmt>(getStmts()[1 + NumCatchStmts]);
233 return cast_or_null<ObjCAtFinallyStmt>(getStmts()[
[all...]

Completed in 1379 milliseconds