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

/external/clang/include/clang/AST/
H A DExprCXX.h1371 getStoredStmts()[NumCaptures] = nullptr;
1374 Stmt **getStoredStmts() const { function in class:clang::LambdaExpr
1381 return reinterpret_cast<unsigned *>(getStoredStmts() + NumCaptures + 1);
1474 return reinterpret_cast<Expr **>(getStoredStmts());
1537 return child_range(getStoredStmts(), getStoredStmts() + NumCaptures + 1);
H A DStmt.h2049 Stmt **getStoredStmts() const { function in class:clang::CapturedStmt
2055 void setCapturedStmt(Stmt *S) { getStoredStmts()[NumCaptures] = S; }
2068 Stmt *getCapturedStmt() { return getStoredStmts()[NumCaptures]; }
2143 return reinterpret_cast<Expr **>(getStoredStmts());
/external/clang/lib/AST/
H A DExprCXX.cpp963 Stmt **Stored = getStoredStmts();
1092 if (!getStoredStmts()[NumCaptures])
1093 getStoredStmts()[NumCaptures] = getCallOperator()->getBody();
1095 return reinterpret_cast<CompoundStmt *>(getStoredStmts()[NumCaptures]);
H A DStmt.cpp1036 Stmt **Stored = getStoredStmts();
1051 getStoredStmts()[NumCaptures] = nullptr;
1065 // getStoredStmts() getStoredCaptures()
1097 return child_range(getStoredStmts(), getStoredStmts() + NumCaptures);

Completed in 203 milliseconds