Searched refs:CXXReinterpretCastExpr (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 664 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()
|
D | StmtProfile.cpp | 1020 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
|
D | StmtPrinter.cpp | 1575 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
|
D | ExprConstant.cpp | 4010 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 | 306 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,
|
D | DataRecursiveASTVisitor.h | 1997 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
D | RecursiveASTVisitor.h | 2022 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1477 CXXReinterpretCastExpr> reinterpretCastExpr;
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1264 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr() 2840 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1228 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/lib/Sema/ |
D | SemaCast.cpp | 282 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
|
D | TreeTransform.h | 8245 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
|
D | SemaExpr.cpp | 9779 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()
|