Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp609 CXXReinterpretCastExpr *
610 CXXReinterpretCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK, in Create()
618 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create()
619 CXXReinterpretCastExpr *E = in Create()
620 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
626 CXXReinterpretCastExpr *
627 CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) { in CreateEmpty()
628 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr) in CreateEmpty()
630 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
DStmtProfile.cpp774 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
DStmtPrinter.cpp1279 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
DExprConstant.cpp3743 RetTy VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td101 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/include/clang/AST/
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(ASTContext &Context, QualType T,
318 static CXXReinterpretCastExpr *CreateEmpty(ASTContext &Context,
DRecursiveASTVisitor.h2102 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1155 CXXReinterpretCastExpr> reinterpretCastExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1255 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
2238 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1215 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h2008 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/external/clang/lib/Sema/
DSemaCast.cpp284 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h7291 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
DSemaExpr.cpp8696 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()