Home
last modified time | relevance | path

Searched refs:CXXReinterpretCastExpr (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/AST/
DExprCXX.cpp593 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()
DStmtProfile.cpp1234 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
DStmtPrinter.cpp1881 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
DASTImporter.cpp6026 } else if (isa<CXXReinterpretCastExpr>(E)) { in VisitCXXNamedCastExpr()
6027 return CXXReinterpretCastExpr::Create( in VisitCXXNamedCastExpr()
DExprConstant.cpp4261 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td108 def CXXReinterpretCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/include/clang/AST/
DExprCXX.h332 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,
DRecursiveASTVisitor.h2115 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1817 CXXReinterpretCastExpr> cxxReinterpretCastExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1321 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
3507 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1293 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/external/clang/lib/Sema/
DSemaCast.cpp283 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h9223 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
DSemaExpr.cpp10571 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()