Lines Matching defs:Mem
345 void *Mem = Context.Allocate(Size, alignof(ConstantExpr));
346 return new (Mem) ConstantExpr(E, StorageKind, IsImmediateInvocation);
373 void *Mem = Context.Allocate(Size, alignof(ConstantExpr));
374 return new (Mem) ConstantExpr(EmptyShell(), StorageKind);
522 void *Mem = Context.Allocate(Size, alignof(DeclRefExpr));
523 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D,
539 void *Mem = Context.Allocate(Size, alignof(DeclRefExpr));
540 return new (Mem) DeclRefExpr(EmptyShell());
641 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName),
643 return new (Mem) PredefinedExpr(L, FNTy, IK, IsTransparent, SL);
648 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName),
650 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName);
1197 void *Mem = Ctx.Allocate(totalSizeToAlloc<unsigned, SourceLocation, char>(
1200 return new (Mem)
1208 void *Mem = Ctx.Allocate(totalSizeToAlloc<unsigned, SourceLocation, char>(
1211 return new (Mem)
1506 void *Mem =
1508 return new (Mem) CallExpr(CallExprClass, Fn, /*PreArgs=*/{}, Args, Ty, VK,
1512 CallExpr *CallExpr::CreateTemporary(void *Mem, Expr *Fn, QualType Ty,
1515 assert(!(reinterpret_cast<uintptr_t>(Mem) % alignof(CallExpr)) &&
1517 return new (Mem) CallExpr(CallExprClass, Fn, /*PreArgs=*/{}, /*Args=*/{}, Ty,
1526 void *Mem =
1528 return new (Mem)
1677 void *Mem = C.Allocate(
1680 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1686 void *Mem =
1688 return new (Mem) OffsetOfExpr(numComps, numExprs);
1784 void *Mem = C.Allocate(Size, alignof(MemberExpr));
1785 return new (Mem) MemberExpr(Base, IsArrow, OperatorLoc, QualifierLoc,
1801 void *Mem = Context.Allocate(Size, alignof(MemberExpr));
1802 return new (Mem) MemberExpr(EmptyShell());
4528 void *Mem = Context.Allocate(
4531 return new (Mem) GenericSelectionExpr(
4542 void *Mem = Context.Allocate(
4545 return new (Mem) GenericSelectionExpr(
4557 void *Mem = Context.Allocate(
4560 return new (Mem) GenericSelectionExpr(
4571 void *Mem = Context.Allocate(
4574 return new (Mem) GenericSelectionExpr(
4582 void *Mem = Context.Allocate(
4585 return new (Mem) GenericSelectionExpr(EmptyShell(), NumAssocs);
4639 void *Mem = C.Allocate(totalSizeToAlloc<Stmt *>(IndexExprs.size() + 1),
4641 return new (Mem) DesignatedInitExpr(C, C.VoidTy, Designators,
4648 void *Mem = C.Allocate(totalSizeToAlloc<Stmt *>(NumIndexExprs + 1),
4650 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
4778 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(Exprs.size()),
4780 return new (Mem) ParenListExpr(LParenLoc, Exprs, RParenLoc);
4785 void *Mem =
4787 return new (Mem) ParenListExpr(EmptyShell(), NumExprs);
4897 void *Mem =
4899 return new (Mem) BinaryOperator(EmptyShell());
4909 void *Mem =
4911 return new (Mem)
4918 void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra,
4920 return new (Mem) CompoundAssignOperator(C, EmptyShell(), HasFPFeatures);
4931 void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra,
4933 return new (Mem)
4940 void *Mem = C.Allocate(totalSizeToAlloc<FPOptionsOverride>(hasFPFeatures),
4942 return new (Mem) UnaryOperator(hasFPFeatures, EmptyShell());
4966 void *Mem = C.Allocate(Size, alignof(UnaryOperator));
4967 return new (Mem)
5231 void *Mem = Ctx.Allocate(totalSizeToAlloc<Expr *>(SubExprs.size()),
5233 return new (Mem) RecoveryExpr(Ctx, T, BeginLoc, EndLoc, SubExprs);
5237 void *Mem = Ctx.Allocate(totalSizeToAlloc<Expr *>(NumSubExprs),
5239 return new (Mem) RecoveryExpr(EmptyShell(), NumSubExprs);
5273 void *Mem = Context.Allocate(
5276 auto *E = new (Mem) OMPArrayShapingExpr(T, Op, L, R, Dims);
5283 void *Mem = Context.Allocate(
5286 return new (Mem) OMPArrayShapingExpr(EmptyShell(), NumDims);
5403 void *Mem = Context.Allocate(
5409 return new (Mem) OMPIteratorExpr(T, IteratorKwLoc, L, R, Data, Helpers);
5414 void *Mem = Context.Allocate(
5419 return new (Mem) OMPIteratorExpr(EmptyShell(), NumIterators);