Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DProgramPoint.cpp194 Out << "\"cast_kind\": \"" << CS->getCastKindName() << "\", "; in printJson()
H A DUnsafeBufferUsage.cpp51 return "ImplicitCastExpr(" + std::string(ICE->getCastKindName()) + ")"; in VisitImplicitCastExpr()
H A DCFG.cpp5812 OS << " (" << CE->getStmtClassName() << ", " << CE->getCastKindName() in print_elem()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTextNodeDumper.cpp1352 OS << Node->getCastKindName(); in VisitCastExpr()
1529 << " <" << Node->getCastKindName(); in VisitCXXNamedCastExpr()
1549 << Node->getCastKindName() << ">"; in VisitCXXFunctionalCastExpr()
H A DJSONNodeDumper.cpp1423 JOS.attribute("castKind", CE->getCastKindName()); in VisitCastExpr()
H A DExpr.cpp1952 const char *CastExpr::getCastKindName(CastKind CK) { in getCastKindName() function in CastExpr
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3545 static const char *getCastKindName(CastKind CK);
3546 const char *getCastKindName() const { return getCastKindName(getCastKind()); } in getCastKindName() function
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp705 std::string(CastExpr::getCastKindName(Kind))) in ImpCastExprToType()
H A DSemaExpr.cpp11825 llvm::errs() << "unhandled cast kind: " << CastExpr::getCastKindName(CK) in castKindToImplicitConversionKind()