Lines Matching defs:Mem
346 void *Mem = Context.Allocate(Size, alignof(ConstantExpr));
347 return new (Mem) ConstantExpr(E, StorageKind, IsImmediateInvocation);
374 void *Mem = Context.Allocate(Size, alignof(ConstantExpr));
375 return new (Mem) ConstantExpr(EmptyShell(), StorageKind);
523 void *Mem = Context.Allocate(Size, alignof(DeclRefExpr));
524 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D,
540 void *Mem = Context.Allocate(Size, alignof(DeclRefExpr));
541 return new (Mem) DeclRefExpr(EmptyShell());
642 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName),
644 return new (Mem) PredefinedExpr(L, FNTy, IK, IsTransparent, SL);
649 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName),
651 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName);
1195 void *Mem = Ctx.Allocate(totalSizeToAlloc<unsigned, SourceLocation, char>(
1198 return new (Mem)
1206 void *Mem = Ctx.Allocate(totalSizeToAlloc<unsigned, SourceLocation, char>(
1209 return new (Mem)
1502 void *Mem =
1504 return new (Mem) CallExpr(CallExprClass, Fn, /*PreArgs=*/{}, Args, Ty, VK,
1508 CallExpr *CallExpr::CreateTemporary(void *Mem, Expr *Fn, QualType Ty,
1511 assert(!(reinterpret_cast<uintptr_t>(Mem) % alignof(CallExpr)) &&
1513 return new (Mem) CallExpr(CallExprClass, Fn, /*PreArgs=*/{}, /*Args=*/{}, Ty,
1522 void *Mem =
1524 return new (Mem)
1663 void *Mem = C.Allocate(
1666 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1672 void *Mem =
1674 return new (Mem) OffsetOfExpr(numComps, numExprs);
1770 void *Mem = C.Allocate(Size, alignof(MemberExpr));
1771 return new (Mem) MemberExpr(Base, IsArrow, OperatorLoc, QualifierLoc,
1787 void *Mem = Context.Allocate(Size, alignof(MemberExpr));
1788 return new (Mem) MemberExpr(EmptyShell());
4499 void *Mem = Context.Allocate(
4502 return new (Mem) GenericSelectionExpr(
4513 void *Mem = Context.Allocate(
4516 return new (Mem) GenericSelectionExpr(
4528 void *Mem = Context.Allocate(
4531 return new (Mem) GenericSelectionExpr(
4542 void *Mem = Context.Allocate(
4545 return new (Mem) GenericSelectionExpr(
4553 void *Mem = Context.Allocate(
4556 return new (Mem) GenericSelectionExpr(EmptyShell(), NumAssocs);
4610 void *Mem = C.Allocate(totalSizeToAlloc<Stmt *>(IndexExprs.size() + 1),
4612 return new (Mem) DesignatedInitExpr(C, C.VoidTy, Designators,
4619 void *Mem = C.Allocate(totalSizeToAlloc<Stmt *>(NumIndexExprs + 1),
4621 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
4750 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(Exprs.size()),
4752 return new (Mem) ParenListExpr(LParenLoc, Exprs, RParenLoc);
4757 void *Mem =
4759 return new (Mem) ParenListExpr(EmptyShell(), NumExprs);
4799 void *Mem =
4801 return new (Mem) BinaryOperator(EmptyShell());
4811 void *Mem =
4813 return new (Mem)
4820 void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra,
4822 return new (Mem) CompoundAssignOperator(C, EmptyShell(), HasFPFeatures);
4833 void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra,
4835 return new (Mem)
4842 void *Mem = C.Allocate(totalSizeToAlloc<FPOptionsOverride>(hasFPFeatures),
4844 return new (Mem) UnaryOperator(hasFPFeatures, EmptyShell());
4868 void *Mem = C.Allocate(Size, alignof(UnaryOperator));
4869 return new (Mem)
5131 void *Mem = Ctx.Allocate(totalSizeToAlloc<Expr *>(SubExprs.size()),
5133 return new (Mem) RecoveryExpr(Ctx, T, BeginLoc, EndLoc, SubExprs);
5137 void *Mem = Ctx.Allocate(totalSizeToAlloc<Expr *>(NumSubExprs),
5139 return new (Mem) RecoveryExpr(EmptyShell(), NumSubExprs);
5173 void *Mem = Context.Allocate(
5176 auto *E = new (Mem) OMPArrayShapingExpr(T, Op, L, R, Dims);
5183 void *Mem = Context.Allocate(
5186 return new (Mem) OMPArrayShapingExpr(EmptyShell(), NumDims);
5303 void *Mem = Context.Allocate(
5309 return new (Mem) OMPIteratorExpr(T, IteratorKwLoc, L, R, Data, Helpers);
5314 void *Mem = Context.Allocate(
5319 return new (Mem) OMPIteratorExpr(EmptyShell(), NumIterators);