Home | History | Annotate | Download | only in AST

Lines Matching refs:CXXReinterpretCastExpr

571 CXXReinterpretCastExpr *
572 CXXReinterpretCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK,
579 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
580 CXXReinterpretCastExpr *E =
581 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
587 CXXReinterpretCastExpr *
588 CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
589 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr)
591 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize);