Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DExprCXX.cpp792 CXXReinterpretCastExpr *
793 CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T, in Create()
802 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
810 CXXReinterpretCastExpr *
811 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty()
813 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
DStmtProfile.cpp1821 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
DStmtPrinter.cpp1780 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
DASTImporter.cpp8134 } else if (isa<CXXReinterpretCastExpr>(E)) { in VisitCXXNamedCastExpr()
8135 return CXXReinterpretCastExpr::Create( in VisitCXXNamedCastExpr()
DExprConstant.cpp7393 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DExprCXX.h521 class CXXReinterpretCastExpr final
523 private llvm::TrailingObjects<CXXReinterpretCastExpr,
525 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, Expr *op, in CXXReinterpretCastExpr() function
533 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function
541 static CXXReinterpretCastExpr *Create(const ASTContext &Context, QualType T,
547 static CXXReinterpretCastExpr *CreateEmpty(const ASTContext &Context,
DRecursiveASTVisitor.h2364 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DStmtNodes.td123 def CXXReinterpretCastExpr : StmtNode<CXXNamedCastExpr>;
/freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/
DASTMatchersInternal.cpp947 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp1778 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
3608 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1672 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h2545 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaCast.cpp360 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h11579 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
DSemaExpr.cpp13789 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()