Searched refs:CXXReinterpretCastExpr (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 671 CXXReinterpretCastExpr * 672 CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T, in Create() 680 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create() 681 CXXReinterpretCastExpr *E = in Create() 682 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create() 688 CXXReinterpretCastExpr * 689 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() 690 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr) in CreateEmpty() 692 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
|
D | StmtProfile.cpp | 882 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
|
D | StmtPrinter.cpp | 1488 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
|
D | ExprConstant.cpp | 3897 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 101 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 299 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,
|
D | DataRecursiveASTVisitor.h | 1986 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
D | RecursiveASTVisitor.h | 2011 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1249 CXXReinterpretCastExpr> reinterpretCastExpr;
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1262 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr() 2513 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1221 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/lib/Sema/ |
D | SemaCast.cpp | 287 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
|
D | TreeTransform.h | 7737 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
|
D | SemaExpr.cpp | 9120 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()
|