Lines Matching refs:PathSize

518   unsigned PathSize = (BasePath ? BasePath->size() : 0);  in Create()  local
519 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create()
521 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
523 if (PathSize) in Create()
530 unsigned PathSize) { in CreateEmpty() argument
531 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in CreateEmpty()
532 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize); in CreateEmpty()
543 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
544 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create()
546 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
548 if (PathSize) in Create()
555 unsigned PathSize) { in CreateEmpty() argument
556 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in CreateEmpty()
557 return new (Buffer) CXXDynamicCastExpr(EmptyShell(), PathSize); in CreateEmpty()
600 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
601 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create()
603 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
605 if (PathSize) in Create()
612 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() argument
613 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in CreateEmpty()
614 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
635 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
636 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create()
638 new (Buffer) CXXFunctionalCastExpr(T, VK, Written, K, Op, PathSize, L, R); in Create()
639 if (PathSize) in Create()
646 CXXFunctionalCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() argument
647 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in CreateEmpty()
648 return new (Buffer) CXXFunctionalCastExpr(EmptyShell(), PathSize); in CreateEmpty()