Home | History | Annotate | Download | only in AST

Lines Matching refs:Mem

381   void *Mem =
383 return new (Mem) CompoundStmt(Stmts, LB, RB);
388 void *Mem =
390 CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell());
420 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(Attrs.size()),
422 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt);
428 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(NumAttrs),
430 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs);
950 void *Mem = Ctx.Allocate(
954 return new (Mem)
960 void *Mem = Ctx.Allocate(
964 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit);
1071 void *Mem = Ctx.Allocate(
1074 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc);
1079 void *Mem = Ctx.Allocate(
1082 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar);
1133 void *Mem =
1136 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc);
1140 void *Mem =
1143 return new (Mem) WhileStmt(EmptyShell(), HasVar);
1192 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate),
1194 return new (Mem) ReturnStmt(RL, E, NRVOCandidate);
1199 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate),
1201 return new (Mem) ReturnStmt(EmptyShell(), HasNRVOCandidate);
1209 void *Mem = Ctx.Allocate(
1213 return new (Mem) CaseStmt(lhs, rhs, caseLoc, ellipsisLoc, colonLoc);
1218 void *Mem = Ctx.Allocate(
1222 return new (Mem) CaseStmt(EmptyShell(), CaseStmtIsGNURange);
1361 void *Mem = Context.Allocate(Size);
1362 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD);
1374 void *Mem = Context.Allocate(Size);
1375 return new (Mem) CapturedStmt(EmptyShell(), NumCaptures);