Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp546 CXXReinterpretCastExpr *
547 CXXReinterpretCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK, in Create()
554 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
555 CXXReinterpretCastExpr *E = in Create()
556 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
562 CXXReinterpretCastExpr *
563 CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) { in CreateEmpty()
564 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr) in CreateEmpty()
566 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
DStmtProfile.cpp709 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
DStmtPrinter.cpp1074 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
/external/clang/include/clang/AST/
DExprCXX.h271 class CXXReinterpretCastExpr : public CXXNamedCastExpr {
272 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, in CXXReinterpretCastExpr() function
279 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function
283 static CXXReinterpretCastExpr *Create(ASTContext &Context, QualType T,
288 static CXXReinterpretCastExpr *CreateEmpty(ASTContext &Context,
294 static bool classof(const CXXReinterpretCastExpr *) { return true; } in classof() argument
DRecursiveASTVisitor.h1781 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/external/clang/include/clang/Basic/
DStmtNodes.td93 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp997 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
1825 S = CXXReinterpretCastExpr::CreateEmpty(*Context, in ReadStmtFromStream()
DASTWriterStmt.cpp983 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/lib/Sema/
DSemaCXXCast.cpp211 return Owned(CXXReinterpretCastExpr::Create(Context, in BuildCXXNamedCast()
DTreeTransform.h6645 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
DSemaExpr.cpp7258 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()