Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp664 CXXReinterpretCastExpr *
665 CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T, in Create()
673 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
674 CXXReinterpretCastExpr *E = in Create()
675 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
681 CXXReinterpretCastExpr *
682 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty()
683 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr) in CreateEmpty()
685 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
DStmtProfile.cpp1020 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
DStmtPrinter.cpp1575 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
DExprConstant.cpp4010 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td101 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/include/clang/AST/
DExprCXX.h306 class CXXReinterpretCastExpr : public CXXNamedCastExpr {
307 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, in CXXReinterpretCastExpr() function
315 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function
319 static CXXReinterpretCastExpr *Create(const ASTContext &Context, QualType T,
325 static CXXReinterpretCastExpr *CreateEmpty(const ASTContext &Context,
DDataRecursiveASTVisitor.h1997 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
DRecursiveASTVisitor.h2022 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1477 CXXReinterpretCastExpr> reinterpretCastExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1264 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
2840 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1228 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/lib/Sema/
DSemaCast.cpp282 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h8245 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
DSemaExpr.cpp9779 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()