Home | History | Annotate | Download | only in AST

Lines Matching defs:PathSize

1691   unsigned PathSize = (BasePath ? BasePath->size() : 0);
1693 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1695 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
1696 if (PathSize) E->setCastPath(*BasePath);
1701 unsigned PathSize) {
1703 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1704 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1713 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1715 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1717 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
1718 if (PathSize) E->setCastPath(*BasePath);
1723 unsigned PathSize) {
1725 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1726 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);