Home
last modified time | relevance | path

Searched refs:CXXReinterpretCastExpr (Results 1 – 14 of 14) sorted by relevance

/minix/external/bsd/llvm/dist/clang/lib/AST/
H A DExprCXX.cpp668 CXXReinterpretCastExpr *
669 CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T, in Create()
677 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
678 CXXReinterpretCastExpr *E = in Create()
679 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
685 CXXReinterpretCastExpr *
686 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty()
687 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr) in CreateEmpty()
689 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
H A DStmtProfile.cpp974 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
H A DStmtPrinter.cpp1574 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
H A DExprConstant.cpp4009 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/minix/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td101 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
/minix/external/bsd/llvm/dist/clang/include/clang/AST/
H A DExprCXX.h299 class CXXReinterpretCastExpr : public CXXNamedCastExpr {
300 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, in CXXReinterpretCastExpr() function
308 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function
312 static CXXReinterpretCastExpr *Create(const ASTContext &Context, QualType T,
318 static CXXReinterpretCastExpr *CreateEmpty(const ASTContext &Context,
H A DRecursiveASTVisitor.h2020 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
H A DDataRecursiveASTVisitor.h1995 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/minix/external/bsd/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1451 CXXReinterpretCastExpr> reinterpretCastExpr;
/minix/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1264 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
2771 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1227 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/minix/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaCast.cpp282 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
H A DTreeTransform.h8206 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
H A DSemaExpr.cpp9272 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()