Searched refs:CXXReinterpretCastExpr (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 609 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()
|
D | StmtProfile.cpp | 774 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
|
D | StmtPrinter.cpp | 1279 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
|
D | ExprConstant.cpp | 3743 RetTy 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(ASTContext &Context, QualType T, 318 static CXXReinterpretCastExpr *CreateEmpty(ASTContext &Context,
|
D | RecursiveASTVisitor.h | 2102 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1155 CXXReinterpretCastExpr> reinterpretCastExpr;
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1255 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr() 2238 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1215 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/tools/libclang/ |
D | RecursiveASTVisitor.h | 2008 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
/external/clang/lib/Sema/ |
D | SemaCast.cpp | 284 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
|
D | TreeTransform.h | 7291 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
|
D | SemaExpr.cpp | 8696 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()
|