Lines Matching defs:Mem

386   void *Mem =
390 return new (Mem) CompoundStmt(Stmts, FPFeatures, LB, RB);
395 void *Mem = C.Allocate(
398 CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell());
429 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(Attrs.size()),
431 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt);
437 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(NumAttrs),
439 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs);
965 void *Mem = Ctx.Allocate(
969 return new (Mem)
975 void *Mem = Ctx.Allocate(
979 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit);
1086 void *Mem = Ctx.Allocate(
1089 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc);
1094 void *Mem = Ctx.Allocate(
1097 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar);
1148 void *Mem =
1151 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc);
1155 void *Mem =
1158 return new (Mem) WhileStmt(EmptyShell(), HasVar);
1207 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate),
1209 return new (Mem) ReturnStmt(RL, E, NRVOCandidate);
1214 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate),
1216 return new (Mem) ReturnStmt(EmptyShell(), HasNRVOCandidate);
1224 void *Mem = Ctx.Allocate(
1228 return new (Mem) CaseStmt(lhs, rhs, caseLoc, ellipsisLoc, colonLoc);
1233 void *Mem = Ctx.Allocate(
1237 return new (Mem) CaseStmt(EmptyShell(), CaseStmtIsGNURange);
1381 void *Mem = Context.Allocate(Size);
1382 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD);
1394 void *Mem = Context.Allocate(Size);
1395 return new (Mem) CapturedStmt(EmptyShell(), NumCaptures);