Home | History | Annotate | Download | only in AST

Lines Matching refs:CStyleCastExpr

1708 CStyleCastExpr *CStyleCastExpr::Create(const ASTContext &C, QualType T,
1715 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1716 CStyleCastExpr *E =
1717 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
1722 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C,
1725 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1726 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
2245 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this);
2299 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);