Searched refs:CXXReinterpretCastExpr (Results 1 – 11 of 11) sorted by relevance
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 546 CXXReinterpretCastExpr * 547 CXXReinterpretCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK, in Create() 554 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create() 555 CXXReinterpretCastExpr *E = in Create() 556 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create() 562 CXXReinterpretCastExpr * 563 CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) { in CreateEmpty() 564 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr) in CreateEmpty() 566 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
|
D | StmtProfile.cpp | 709 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
|
D | StmtPrinter.cpp | 1074 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 271 class CXXReinterpretCastExpr : public CXXNamedCastExpr { 272 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, in CXXReinterpretCastExpr() function 279 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function 283 static CXXReinterpretCastExpr *Create(ASTContext &Context, QualType T, 288 static CXXReinterpretCastExpr *CreateEmpty(ASTContext &Context, 294 static bool classof(const CXXReinterpretCastExpr *) { return true; } in classof() argument
|
D | RecursiveASTVisitor.h | 1781 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 93 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 997 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr() 1825 S = CXXReinterpretCastExpr::CreateEmpty(*Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 983 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/lib/Sema/ |
D | SemaCXXCast.cpp | 211 return Owned(CXXReinterpretCastExpr::Create(Context, in BuildCXXNamedCast()
|
D | TreeTransform.h | 6645 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
|
D | SemaExpr.cpp | 7258 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()
|