Lines Matching refs:PathSize
534 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
536 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
538 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
540 if (PathSize) E->setCastPath(*BasePath); in Create()
545 unsigned PathSize) { in CreateEmpty() argument
547 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
548 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize); in CreateEmpty()
559 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
561 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
563 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
565 if (PathSize) E->setCastPath(*BasePath); in Create()
570 unsigned PathSize) { in CreateEmpty() argument
572 C.Allocate(sizeof(CXXDynamicCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
573 return new (Buffer) CXXDynamicCastExpr(EmptyShell(), PathSize); in CreateEmpty()
616 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
618 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
620 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
622 if (PathSize) E->setCastPath(*BasePath); in Create()
627 CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) { in CreateEmpty() argument
629 + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
630 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
651 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
653 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
655 new (Buffer) CXXFunctionalCastExpr(T, VK, Written, L, K, Op, PathSize, R); in Create()
656 if (PathSize) E->setCastPath(*BasePath); in Create()
661 CXXFunctionalCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) { in CreateEmpty() argument
663 + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
664 return new (Buffer) CXXFunctionalCastExpr(EmptyShell(), PathSize); in CreateEmpty()