Home
last modified time | relevance | path

Searched refs:getStoredStmts (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/AST/
DStmt.cpp999 Stmt **Stored = getStoredStmts(); in CapturedStmt()
1014 getStoredStmts()[NumCaptures] = nullptr; in CapturedStmt()
1060 return child_range(getStoredStmts(), getStoredStmts() + NumCaptures); in children()
DExprCXX.cpp968 Stmt **Stored = getStoredStmts(); in LambdaExpr()
1105 if (!getStoredStmts()[NumCaptures]) in getBody()
1106 *const_cast<clang::Stmt **>(&getStoredStmts()[NumCaptures]) = in getBody()
1109 return reinterpret_cast<CompoundStmt *>(getStoredStmts()[NumCaptures]); in getBody()
/external/clang/include/clang/AST/
DStmt.h2066 Stmt **getStoredStmts() { return reinterpret_cast<Stmt **>(this + 1); } in getStoredStmts() function
2068 Stmt *const *getStoredStmts() const { in getStoredStmts() function
2074 void setCapturedStmt(Stmt *S) { getStoredStmts()[NumCaptures] = S; } in setCapturedStmt()
2087 Stmt *getCapturedStmt() { return getStoredStmts()[NumCaptures]; } in getCapturedStmt()
2088 const Stmt *getCapturedStmt() const { return getStoredStmts()[NumCaptures]; } in getCapturedStmt()
2170 return reinterpret_cast<Expr **>(getStoredStmts()); in capture_init_begin()
2174 return reinterpret_cast<Expr *const *>(getStoredStmts()); in capture_init_begin()
DExprCXX.h1477 getStoredStmts()[NumCaptures] = nullptr; in LambdaExpr()
1480 Stmt **getStoredStmts() { return reinterpret_cast<Stmt **>(this + 1); } in getStoredStmts() function
1482 Stmt *const *getStoredStmts() const { in getStoredStmts() function
1489 return reinterpret_cast<unsigned *>(getStoredStmts() + NumCaptures + 1); in getArrayIndexStarts()
1493 return reinterpret_cast<const unsigned *>(getStoredStmts() + NumCaptures + in getArrayIndexStarts()
1610 return reinterpret_cast<Expr **>(getStoredStmts()); in capture_init_begin()
1616 return reinterpret_cast<Expr *const *>(getStoredStmts()); in capture_init_begin()
1686 return child_range(getStoredStmts(), getStoredStmts() + NumCaptures + 1); in children()