Home | History | Annotate | Download | only in AST

Lines Matching refs:CXXReinterpretCastExpr

664 CXXReinterpretCastExpr *
665 CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T,
673 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
674 CXXReinterpretCastExpr *E =
675 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
681 CXXReinterpretCastExpr *
682 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) {
683 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr)
685 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize);