Lines Matching refs:PathSize
1656 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
1657 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create()
1659 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK); in Create()
1660 if (PathSize) in Create()
1667 unsigned PathSize) { in CreateEmpty() argument
1668 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in CreateEmpty()
1669 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize); in CreateEmpty()
1678 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
1679 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create()
1681 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R); in Create()
1682 if (PathSize) in Create()
1689 unsigned PathSize) { in CreateEmpty() argument
1690 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in CreateEmpty()
1691 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize); in CreateEmpty()