Lines Matching defs:ReturnStmt
1197 // ReturnStmt
1198 ReturnStmt::ReturnStmt(SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate)
1207 ReturnStmt::ReturnStmt(EmptyShell Empty, bool HasNRVOCandidate)
1212 ReturnStmt *ReturnStmt::Create(const ASTContext &Ctx, SourceLocation RL,
1216 alignof(ReturnStmt));
1217 return new (Mem) ReturnStmt(RL, E, NRVOCandidate);
1220 ReturnStmt *ReturnStmt::CreateEmpty(const ASTContext &Ctx,
1223 alignof(ReturnStmt));
1224 return new (Mem) ReturnStmt(EmptyShell(), HasNRVOCandidate);