Home
last modified time | relevance | path

Searched refs:getCastKindName (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DAnalysisOrderChecker.cpp63 llvm::errs() << "PreStmt<CastExpr> (Kind : " << CE->getCastKindName() in checkPreStmt()
69 llvm::errs() << "PostStmt<CastExpr> (Kind : " << CE->getCastKindName() in checkPostStmt()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DProgramPoint.cpp194 Out << "\"cast_kind\": \"" << CS->getCastKindName() << "\", "; in printJson()
H A DCFG.cpp5735 OS << " (" << CE->getStmtClassName() << ", " << CE->getCastKindName() in print_elem()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DDumpAST.cpp230 return CE->getCastKindName(); in getDetail()
/llvm-project-15.0.7/clang/lib/AST/
H A DTextNodeDumper.cpp1021 OS << Node->getCastKindName(); in VisitCastExpr()
1183 << " <" << Node->getCastKindName(); in VisitCXXNamedCastExpr()
1201 << Node->getCastKindName() << ">"; in VisitCXXFunctionalCastExpr()
H A DJSONNodeDumper.cpp1284 JOS.attribute("castKind", CE->getCastKindName()); in VisitCastExpr()
H A DExpr.cpp1862 const char *CastExpr::getCastKindName(CastKind CK) { in getCastKindName() function in CastExpr
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h3522 static const char *getCastKindName(CastKind CK);
3523 const char *getCastKindName() const { return getCastKindName(getCastKind()); } in getCastKindName() function
/llvm-project-15.0.7/clang/lib/Sema/
H A DSema.cpp631 std::string(CastExpr::getCastKindName(Kind))) in ImpCastExprToType()
H A DSemaExpr.cpp12148 llvm::errs() << "unhandled cast kind: " << CastExpr::getCastKindName(CK) in castKindToImplicitConversionKind()