Lines Matching refs:Mem
384 void *Mem = in Create() local
388 return new (Mem) CompoundStmt(Stmts, FPFeatures, LB, RB); in Create()
393 void *Mem = C.Allocate( in CreateEmpty() local
396 CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell()); in CreateEmpty()
427 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(Attrs.size()), in Create() local
429 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); in Create()
435 void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(NumAttrs), in CreateEmpty() local
437 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); in CreateEmpty()
962 void *Mem = Ctx.Allocate( in Create() local
966 return new (Mem) in Create()
972 void *Mem = Ctx.Allocate( in CreateEmpty() local
976 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit); in CreateEmpty()
1083 void *Mem = Ctx.Allocate( in Create() local
1086 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc); in Create()
1091 void *Mem = Ctx.Allocate( in CreateEmpty() local
1094 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar); in CreateEmpty()
1145 void *Mem = in Create() local
1148 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc); in Create()
1152 void *Mem = in CreateEmpty() local
1155 return new (Mem) WhileStmt(EmptyShell(), HasVar); in CreateEmpty()
1204 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate), in Create() local
1206 return new (Mem) ReturnStmt(RL, E, NRVOCandidate); in Create()
1211 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate), in CreateEmpty() local
1213 return new (Mem) ReturnStmt(EmptyShell(), HasNRVOCandidate); in CreateEmpty()
1221 void *Mem = Ctx.Allocate( in Create() local
1225 return new (Mem) CaseStmt(lhs, rhs, caseLoc, ellipsisLoc, colonLoc); in Create()
1230 void *Mem = Ctx.Allocate( in CreateEmpty() local
1234 return new (Mem) CaseStmt(EmptyShell(), CaseStmtIsGNURange); in CreateEmpty()
1373 void *Mem = Context.Allocate(Size); in Create() local
1374 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD); in Create()
1386 void *Mem = Context.Allocate(Size); in CreateDeserialized() local
1387 return new (Mem) CapturedStmt(EmptyShell(), NumCaptures); in CreateDeserialized()