• Home
  • Raw
  • Download

Lines Matching refs:PathSize

596   unsigned PathSize = (BasePath ? BasePath->size() : 0);  in Create()  local
598 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
600 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
602 if (PathSize) E->setCastPath(*BasePath); in Create()
607 unsigned PathSize) { in CreateEmpty() argument
609 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
610 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize); in CreateEmpty()
621 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
623 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
625 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
627 if (PathSize) E->setCastPath(*BasePath); in Create()
632 unsigned PathSize) { in CreateEmpty() argument
634 C.Allocate(sizeof(CXXDynamicCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
635 return new (Buffer) CXXDynamicCastExpr(EmptyShell(), PathSize); in CreateEmpty()
678 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
680 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
682 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
684 if (PathSize) E->setCastPath(*BasePath); in Create()
689 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() argument
691 + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
692 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
713 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
715 + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
717 new (Buffer) CXXFunctionalCastExpr(T, VK, Written, K, Op, PathSize, L, R); in Create()
718 if (PathSize) E->setCastPath(*BasePath); in Create()
723 CXXFunctionalCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() argument
725 + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
726 return new (Buffer) CXXFunctionalCastExpr(EmptyShell(), PathSize); in CreateEmpty()