Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp802 CXXReinterpretCastExpr *
803 CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T, in Create()
812 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
820 CXXReinterpretCastExpr *
821 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty()
823 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
H A DStmtProfile.cpp1952 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
H A DStmtPrinter.cpp1951 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
H A DASTImporter.cpp8749 } else if (isa<CXXReinterpretCastExpr>(E)) { in VisitCXXNamedCastExpr()
8750 return CXXReinterpretCastExpr::Create( in VisitCXXNamedCastExpr()
H A DExprConstant.cpp7737 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeExprGen.h104 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E);
H A DByteCodeExprGen.cpp1634 const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h520 class CXXReinterpretCastExpr final
522 private llvm::TrailingObjects<CXXReinterpretCastExpr,
524 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, Expr *op, in CXXReinterpretCastExpr() function
532 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function
540 static CXXReinterpretCastExpr *Create(const ASTContext &Context, QualType T,
546 static CXXReinterpretCastExpr *CreateEmpty(const ASTContext &Context,
H A DRecursiveASTVisitor.h2470 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td123 def CXXReinterpretCastExpr : StmtNode<CXXNamedCastExpr>;
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp973 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1799 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
3897 S = CXXReinterpretCastExpr::CreateEmpty(Context, PathSize); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1781 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp365 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
H A DTreeTransform.h12256 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
H A DSemaExpr.cpp15266 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2636 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>