Searched refs:CXXReinterpretCastExpr (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 607 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()
|
D | StmtProfile.cpp | 736 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
|
D | StmtPrinter.cpp | 1213 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
|
D | ExprConstant.cpp | 2405 RetTy VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 100 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 297 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,
|
D | RecursiveASTVisitor.h | 1961 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1162 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr() 2041 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1140 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1045 CXXReinterpretCastExpr> reinterpretCastExpr;
|
/external/clang/tools/libclang/ |
D | RecursiveASTVisitor.h | 1885 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
/external/clang/lib/Sema/ |
D | SemaCast.cpp | 282 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
|
D | TreeTransform.h | 7041 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
|
D | SemaExpr.cpp | 8264 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()
|