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

  /external/clang/include/clang/AST/
StmtObjC.h 171 Stmt **getStmts() { return reinterpret_cast<Stmt **> (this + 1); }
172 const Stmt* const *getStmts() const {
199 const Stmt *getTryBody() const { return getStmts()[0]; }
200 Stmt *getTryBody() { return getStmts()[0]; }
201 void setTryBody(Stmt *S) { getStmts()[0] = S; }
210 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
216 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
222 getStmts()[I + 1] = S;
230 return cast_or_null<ObjCAtFinallyStmt>(getStmts()[1 + NumCatchStmts]);
236 return cast_or_null<ObjCAtFinallyStmt>(getStmts()[1 + NumCatchStmts])
    [all...]
StmtCXX.h 71 Stmt const * const *getStmts() const {
74 Stmt **getStmts() {
92 return getStmts()[NumHandlers]->getLocEnd();
96 return llvm::cast<CompoundStmt>(getStmts()[0]);
99 return llvm::cast<CompoundStmt>(getStmts()[0]);
104 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
107 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
116 return child_range(getStmts(), getStmts() + getNumHandlers() + 1);
  /external/clang/lib/AST/
Stmt.cpp 506 Stmt **Stmts = getStmts();
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 977 S->getStmts()[0] = Reader.ReadSubStmt();
979 S->getStmts()[i + 1] = Reader.ReadSubStmt();
    [all...]

Completed in 93 milliseconds