Home | History | Annotate | Download | only in AST

Lines Matching refs:CStyleCastExpr

1415 CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
1422 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1423 CStyleCastExpr *E =
1424 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
1429 CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
1431 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1432 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1886 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
1887 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
1945 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);