Searched refs:CXXConstCastExpr (Results 1 – 15 of 15) sorted by relevance
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
| H A D | ProTypeConstCastCheck.cpp | 24 const auto *MatchedCast = Result.Nodes.getNodeAs<CXXConstCastExpr>("cast"); in check()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | MakeMemberFunctionConstCheck.cpp | 83 bool VisitCXXConstCastExpr(const CXXConstCastExpr *) { in VisitCXXConstCastExpr() argument
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ExprCXX.cpp | 816 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 D | StmtProfile.cpp | 1900 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) { in VisitCXXConstCastExpr()
|
| H A D | StmtPrinter.cpp | 1930 void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) { in VisitCXXConstCastExpr()
|
| H A D | ASTImporter.cpp | 8283 } else if (isa<CXXConstCastExpr>(E)) { in VisitCXXNamedCastExpr() 8284 return CXXConstCastExpr::Create( in VisitCXXNamedCastExpr()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | ExprCXX.h | 562 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 D | RecursiveASTVisitor.h | 2482 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 124 def CXXConstCastExpr : StmtNode<CXXNamedCastExpr>;
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 968 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXConstCastExpr>
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1771 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr() 3750 S = CXXConstCastExpr::CreateEmpty(Context); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1675 void ASTStmtWriter::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 2600 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXConstCastExpr>
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaCast.cpp | 330 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
|
| H A D | TreeTransform.h | 11866 TreeTransform<Derived>::TransformCXXConstCastExpr(CXXConstCastExpr *E) { in TransformCXXConstCastExpr()
|