Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp607 CXXReinterpretCastExpr *
608 CXXReinterpretCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK, in Create()
616 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
617 CXXReinterpretCastExpr *E = in Create()
618 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
624 CXXReinterpretCastExpr *
625 CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) { in CreateEmpty()
626 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr) in CreateEmpty()
628 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
DStmtProfile.cpp736 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
DStmtPrinter.cpp1213 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
DExprConstant.cpp2405 RetTy VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td100 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/include/clang/AST/
DExprCXX.h297 class CXXReinterpretCastExpr : public CXXNamedCastExpr {
298 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, in CXXReinterpretCastExpr() function
306 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function
310 static CXXReinterpretCastExpr *Create(ASTContext &Context, QualType T,
316 static CXXReinterpretCastExpr *CreateEmpty(ASTContext &Context,
DRecursiveASTVisitor.h1961 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1162 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
2041 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1140 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1045 CXXReinterpretCastExpr> reinterpretCastExpr;
/external/clang/tools/libclang/
DRecursiveASTVisitor.h1885 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/external/clang/lib/Sema/
DSemaCast.cpp282 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h7041 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
DSemaExpr.cpp8264 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()