Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DProTypeConstCastCheck.cpp24 const auto *MatchedCast = Result.Nodes.getNodeAs<CXXConstCastExpr>("cast"); in check()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DMakeMemberFunctionConstCheck.cpp83 bool VisitCXXConstCastExpr(const CXXConstCastExpr *) { in VisitCXXConstCastExpr() argument
/llvm-project-15.0.7/clang/lib/AST/
H A DExprCXX.cpp816 CXXConstCastExpr *CXXConstCastExpr::Create(const ASTContext &C, QualType T, in Create()
822 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets); in Create()
825 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) { in CreateEmpty()
826 return new (C) CXXConstCastExpr(EmptyShell()); in CreateEmpty()
H A DStmtProfile.cpp1900 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) { in VisitCXXConstCastExpr()
H A DStmtPrinter.cpp1930 void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) { in VisitCXXConstCastExpr()
H A DASTImporter.cpp8283 } else if (isa<CXXConstCastExpr>(E)) { in VisitCXXNamedCastExpr()
8284 return CXXConstCastExpr::Create( in VisitCXXNamedCastExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExprCXX.h562 class CXXConstCastExpr final
564 private llvm::TrailingObjects<CXXConstCastExpr, CXXBaseSpecifier *> {
565 CXXConstCastExpr(QualType ty, ExprValueKind VK, Expr *op, in CXXConstCastExpr() function
572 explicit CXXConstCastExpr(EmptyShell Empty) in CXXConstCastExpr() function
580 static CXXConstCastExpr *Create(const ASTContext &Context, QualType T,
585 static CXXConstCastExpr *CreateEmpty(const ASTContext &Context);
H A DRecursiveASTVisitor.h2482 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td124 def CXXConstCastExpr : StmtNode<CXXNamedCastExpr>;
/llvm-project-15.0.7/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp968 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXConstCastExpr>
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp1771 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
3750 S = CXXConstCastExpr::CreateEmpty(Context); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1675 void ASTStmtWriter::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2600 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXConstCastExpr>
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaCast.cpp330 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
H A DTreeTransform.h11866 TreeTransform<Derived>::TransformCXXConstCastExpr(CXXConstCastExpr *E) { in TransformCXXConstCastExpr()