OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getStmts
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtObjC.h
181
Stmt **
getStmts
() { return reinterpret_cast<Stmt **> (this + 1); }
182
const Stmt* const *
getStmts
() const {
208
const Stmt *getTryBody() const { return
getStmts
()[0]; }
209
Stmt *getTryBody() { return
getStmts
()[0]; }
210
void setTryBody(Stmt *S) {
getStmts
()[0] = S; }
219
return cast_or_null<ObjCAtCatchStmt>(
getStmts
()[I + 1]);
225
return cast_or_null<ObjCAtCatchStmt>(
getStmts
()[I + 1]);
231
getStmts
()[I + 1] = S;
239
return cast_or_null<ObjCAtFinallyStmt>(
getStmts
()[1 + NumCatchStmts]);
245
return cast_or_null<ObjCAtFinallyStmt>(
getStmts
()[1 + NumCatchStmts])
[
all
...]
StmtCXX.h
82
Stmt *const *
getStmts
() const { return getTrailingObjects<Stmt *>(); }
83
Stmt **
getStmts
() { return getTrailingObjects<Stmt *>(); }
96
return
getStmts
()[NumHandlers]->getEndLoc();
100
return cast<CompoundStmt>(
getStmts
()[0]);
103
return cast<CompoundStmt>(
getStmts
()[0]);
108
return cast<CXXCatchStmt>(
getStmts
()[i + 1]);
111
return cast<CXXCatchStmt>(
getStmts
()[i + 1]);
119
return child_range(
getStmts
(),
getStmts
() + getNumHandlers() + 1);
123
return const_child_range(
getStmts
(), getStmts() + getNumHandlers() + 1)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
StmtObjC.cpp
36
Stmt **Stmts =
getStmts
();
StmtCXX.cpp
42
Stmt **Stmts =
getStmts
();
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
1647
S->
getStmts
()[0] = Record.readSubStmt();
1649
S->
getStmts
()[i + 1] = Record.readSubStmt();
Completed in 31 milliseconds
Indexes created Wed Jun 10 00:26:05 UTC 2026