Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DProTypeReinterpretCastCheck.cpp26 Result.Nodes.getNodeAs<CXXReinterpretCastExpr>("cast"); in check()
/llvm-project-15.0.7/clang/lib/AST/
H A 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()
H A DStmtProfile.cpp1896 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
H A DStmtPrinter.cpp1926 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
H A DASTImporter.cpp8279 } else if (isa<CXXReinterpretCastExpr>(E)) { in VisitCXXNamedCastExpr()
8280 return CXXReinterpretCastExpr::Create( in VisitCXXNamedCastExpr()
H A DExprConstant.cpp7475 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A 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,
H A DRecursiveASTVisitor.h2490 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td123 def CXXReinterpretCastExpr : StmtNode<CXXNamedCastExpr>;
/llvm-project-15.0.7/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp962 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNodeTest.cpp1218 TEST_P(ASTMatchersTest, CXXReinterpretCastExpr) { in TEST_P() argument
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp1763 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
3745 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1670 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2558 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaCast.cpp360 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
H A DTreeTransform.h11860 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
H A DSemaExpr.cpp14500 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()