Lines Matching refs:Mem
385 void *Mem = in Create() local
389 return new (Mem) CompoundStmt(Stmts, FPFeatures, LB, RB); in Create()
394 void *Mem = C.Allocate( in CreateEmpty() local
397 CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell()); in CreateEmpty()
428 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(Attrs.size()), in Create() local
430 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); in Create()
436 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(NumAttrs), in CreateEmpty() local
438 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); in CreateEmpty()
963 void *Mem = Ctx.Allocate( in Create() local
967 return new (Mem) in Create()
973 void *Mem = Ctx.Allocate( in CreateEmpty() local
977 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit); in CreateEmpty()
1084 void *Mem = Ctx.Allocate( in Create() local
1087 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc); in Create()
1092 void *Mem = Ctx.Allocate( in CreateEmpty() local
1095 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar); in CreateEmpty()
1146 void *Mem = in Create() local
1149 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc); in Create()
1153 void *Mem = in CreateEmpty() local
1156 return new (Mem) WhileStmt(EmptyShell(), HasVar); in CreateEmpty()
1205 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate), in Create() local
1207 return new (Mem) ReturnStmt(RL, E, NRVOCandidate); in Create()
1212 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate), in CreateEmpty() local
1214 return new (Mem) ReturnStmt(EmptyShell(), HasNRVOCandidate); in CreateEmpty()
1222 void *Mem = Ctx.Allocate( in Create() local
1226 return new (Mem) CaseStmt(lhs, rhs, caseLoc, ellipsisLoc, colonLoc); in Create()
1231 void *Mem = Ctx.Allocate( in CreateEmpty() local
1235 return new (Mem) CaseStmt(EmptyShell(), CaseStmtIsGNURange); in CreateEmpty()
1374 void *Mem = Context.Allocate(Size); in Create() local
1375 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD); in Create()
1387 void *Mem = Context.Allocate(Size); in CreateDeserialized() local
1388 return new (Mem) CapturedStmt(EmptyShell(), NumCaptures); in CreateDeserialized()