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

/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp1038 Stmt **Stored = getStoredStmts();
1053 getStoredStmts()[NumCaptures] = 0;
1067 // getStoredStmts() getStoredCaptures()
1099 return child_range(getStoredStmts(), getStoredStmts() + NumCaptures);
H A DExprCXX.cpp964 Stmt **Stored = getStoredStmts();
1081 if (!getStoredStmts()[NumCaptures])
1082 getStoredStmts()[NumCaptures] = getCallOperator()->getBody();
1084 return reinterpret_cast<CompoundStmt *>(getStoredStmts()[NumCaptures]);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h1984 Stmt **getStoredStmts() const { function in class:clang::CapturedStmt
1990 void setCapturedStmt(Stmt *S) { getStoredStmts()[NumCaptures] = S; }
2003 Stmt *getCapturedStmt() { return getStoredStmts()[NumCaptures]; }
2064 return reinterpret_cast<Expr **>(getStoredStmts());
H A DExprCXX.h1465 getStoredStmts()[NumCaptures] = 0;
1468 Stmt **getStoredStmts() const { function in class:clang::LambdaExpr
1475 return reinterpret_cast<unsigned *>(getStoredStmts() + NumCaptures + 1);
1556 return reinterpret_cast<Expr **>(getStoredStmts());
1619 return child_range(getStoredStmts(), getStoredStmts() + NumCaptures + 1);

Completed in 136 milliseconds