Home
last modified time | relevance | path

Searched refs:MakeSmartPtrCheck (Results 1 – 8 of 8) sorted by relevance

/llvm-project/clang-tools-extra/clang-tidy/modernize/
H A DMakeSmartPtrCheck.cpp39 const char MakeSmartPtrCheck::PointerType[] = "pointerType";
41 MakeSmartPtrCheck::MakeSmartPtrCheck(StringRef Name, ClangTidyContext *Context, in MakeSmartPtrCheck() function in clang::tidy::modernize::MakeSmartPtrCheck
55 void MakeSmartPtrCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) { in storeOptions()
64 bool MakeSmartPtrCheck::isLanguageVersionSupported( in isLanguageVersionSupported()
69 void MakeSmartPtrCheck::registerPPCallbacks(const SourceManager &SM, in registerPPCallbacks()
75 void MakeSmartPtrCheck::registerMatchers(ast_matchers::MatchFinder *Finder) { in registerMatchers()
114 void MakeSmartPtrCheck::check(const MatchFinder::MatchResult &Result) { in check()
149 void MakeSmartPtrCheck::checkConstruct(SourceManager &SM, ASTContext *Ctx, in checkConstruct()
214 void MakeSmartPtrCheck::checkReset(SourceManager &SM, ASTContext *Ctx, in checkReset()
261 bool MakeSmartPtrCheck::replaceNew(DiagnosticBuilder &Diag, in replaceNew()
[all …]
H A DMakeSmartPtrCheck.h22 class MakeSmartPtrCheck : public ClangTidyCheck {
24 MakeSmartPtrCheck(StringRef Name, ClangTidyContext *Context,
H A DMakeSharedCheck.h28 class MakeSharedCheck : public MakeSmartPtrCheck {
H A DMakeUniqueCheck.h25 class MakeUniqueCheck : public MakeSmartPtrCheck {
H A DMakeSharedCheck.cpp19 : MakeSmartPtrCheck(Name, Context, "std::make_shared") {} in MakeSharedCheck()
H A DMakeUniqueCheck.cpp17 : MakeSmartPtrCheck(Name, Context, "std::make_unique"), in MakeUniqueCheck()
H A DCMakeLists.txt17 MakeSmartPtrCheck.cpp
/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/modernize/
H A DBUILD.gn26 "MakeSmartPtrCheck.cpp",