Lines Matching refs:PathSize
589 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
591 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
593 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
595 if (PathSize) E->setCastPath(*BasePath); in Create()
600 unsigned PathSize) { in CreateEmpty() argument
602 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
603 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize); in CreateEmpty()
614 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
616 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
618 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
620 if (PathSize) E->setCastPath(*BasePath); in Create()
625 unsigned PathSize) { in CreateEmpty() argument
627 C.Allocate(sizeof(CXXDynamicCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
628 return new (Buffer) CXXDynamicCastExpr(EmptyShell(), PathSize); in CreateEmpty()
671 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
673 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
675 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
677 if (PathSize) E->setCastPath(*BasePath); in Create()
682 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() argument
684 + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
685 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
706 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
708 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
710 new (Buffer) CXXFunctionalCastExpr(T, VK, Written, K, Op, PathSize, L, R); in Create()
711 if (PathSize) E->setCastPath(*BasePath); in Create()
716 CXXFunctionalCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() argument
718 + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
719 return new (Buffer) CXXFunctionalCastExpr(EmptyShell(), PathSize); in CreateEmpty()