Home
last modified time | relevance | path

Searched refs:DestTypeString (Results 1 – 2 of 2) sorted by relevance

/llvm-project/clang-tools-extra/clang-tidy/google/
H A DAvoidCStyleCastsCheck.cpp166 StringRef DestTypeString = getDestTypeString(SM, getLangOpts(), CastExpr); in check() local
184 ReplaceWithCast((CastType + "<" + DestTypeString + ">").str()); in check()
189 ReplaceWithCast(DestTypeString.str()); in check()
210 ReplaceWithCast(("static_cast<" + DestTypeString + ">").str()); in check()
/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DProTypeCstyleCastCheck.cpp61 StringRef DestTypeString = Lexer::getSourceText( in check() local
74 std::string CastText = ("dynamic_cast<" + DestTypeString + ">").str(); in check()