Home | History | Annotate | Download | only in AST

Lines Matching refs:CStyleCastExpr

1795 CStyleCastExpr *CStyleCastExpr::Create(const ASTContext &C, QualType T,
1802 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1803 CStyleCastExpr *E =
1804 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
1809 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C,
1812 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1813 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
2340 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this);
2394 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);