Searched refs:CXXReinterpretCastExpr (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 593 CXXReinterpretCastExpr * 594 CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T, in Create() 602 CXXReinterpretCastExpr *E = in Create() 603 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create() 611 CXXReinterpretCastExpr * 612 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() 614 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
|
D | StmtProfile.cpp | 1234 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
|
D | StmtPrinter.cpp | 1881 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
|
D | ASTImporter.cpp | 6026 } else if (isa<CXXReinterpretCastExpr>(E)) { in VisitCXXNamedCastExpr() 6027 return CXXReinterpretCastExpr::Create( in VisitCXXNamedCastExpr()
|
D | ExprConstant.cpp | 4261 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 108 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 332 class CXXReinterpretCastExpr final 334 private llvm::TrailingObjects<CXXReinterpretCastExpr, 336 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, in CXXReinterpretCastExpr() function 344 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function 348 static CXXReinterpretCastExpr *Create(const ASTContext &Context, QualType T, 354 static CXXReinterpretCastExpr *CreateEmpty(const ASTContext &Context,
|
D | RecursiveASTVisitor.h | 2115 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1817 CXXReinterpretCastExpr> cxxReinterpretCastExpr;
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1321 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr() 3507 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1293 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
|
/external/clang/lib/Sema/ |
D | SemaCast.cpp | 283 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
|
D | TreeTransform.h | 9223 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
|
D | SemaExpr.cpp | 10571 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()
|