OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getStmts
(Results
1 - 2
of
2
) sorted by null
/external/clang/include/clang/AST/
StmtCXX.h
74
Stmt const * const *
getStmts
() const {
77
Stmt **
getStmts
() {
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);
StmtObjC.h
169
Stmt **
getStmts
() { return reinterpret_cast<Stmt **> (this + 1); }
170
const Stmt* const *
getStmts
() const {
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
()[1 + NumCatchStmts])
[
all
...]
Completed in 66 milliseconds