HomeSort by relevance Sort by last modified time
    Searched defs:getStmts (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/AST/
StmtCXX.h 72 Stmt const * const *getStmts() const {
75 Stmt **getStmts() {
93 return getStmts()[NumHandlers]->getLocEnd();
97 return llvm::cast<CompoundStmt>(getStmts()[0]);
100 return llvm::cast<CompoundStmt>(getStmts()[0]);
105 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
108 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
117 return child_range(getStmts(), getStmts() + getNumHandlers() + 1);
StmtObjC.h 172 Stmt **getStmts() { return reinterpret_cast<Stmt **> (this + 1); }
173 const Stmt* const *getStmts() const {
200 const Stmt *getTryBody() const { return getStmts()[0]; }
201 Stmt *getTryBody() { return getStmts()[0]; }
202 void setTryBody(Stmt *S) { getStmts()[0] = S; }
211 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
217 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
223 getStmts()[I + 1] = S;
231 return cast_or_null<ObjCAtFinallyStmt>(getStmts()[1 + NumCatchStmts]);
237 return cast_or_null<ObjCAtFinallyStmt>(getStmts()[1 + NumCatchStmts])
    [all...]

Completed in 32 milliseconds