Lines Matching defs:Mem

394   void *Mem =
398 return new (Mem) CompoundStmt(Stmts, FPFeatures, LB, RB);
403 void *Mem = C.Allocate(
406 CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell());
437 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(Attrs.size()),
439 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt);
445 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(NumAttrs),
447 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs);
973 void *Mem = Ctx.Allocate(
977 return new (Mem)
983 void *Mem = Ctx.Allocate(
987 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit);
1094 void *Mem = Ctx.Allocate(
1097 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc);
1102 void *Mem = Ctx.Allocate(
1105 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar);
1156 void *Mem =
1159 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc);
1163 void *Mem =
1166 return new (Mem) WhileStmt(EmptyShell(), HasVar);
1215 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate),
1217 return new (Mem) ReturnStmt(RL, E, NRVOCandidate);
1222 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate),
1224 return new (Mem) ReturnStmt(EmptyShell(), HasNRVOCandidate);
1232 void *Mem = Ctx.Allocate(
1236 return new (Mem) CaseStmt(lhs, rhs, caseLoc, ellipsisLoc, colonLoc);
1241 void *Mem = Ctx.Allocate(
1245 return new (Mem) CaseStmt(EmptyShell(), CaseStmtIsGNURange);
1389 void *Mem = Context.Allocate(Size);
1390 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD);
1402 void *Mem = Context.Allocate(Size);
1403 return new (Mem) CapturedStmt(EmptyShell(), NumCaptures);