Searched refs:MakeSmartPtrCheck (Results 1 – 8 of 8) sorted by relevance
/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
H A D | MakeSmartPtrCheck.cpp | 39 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 D | MakeSmartPtrCheck.h | 22 class MakeSmartPtrCheck : public ClangTidyCheck { 24 MakeSmartPtrCheck(StringRef Name, ClangTidyContext *Context,
|
H A D | MakeSharedCheck.h | 28 class MakeSharedCheck : public MakeSmartPtrCheck {
|
H A D | MakeUniqueCheck.h | 25 class MakeUniqueCheck : public MakeSmartPtrCheck {
|
H A D | MakeSharedCheck.cpp | 19 : MakeSmartPtrCheck(Name, Context, "std::make_shared") {} in MakeSharedCheck()
|
H A D | MakeUniqueCheck.cpp | 17 : MakeSmartPtrCheck(Name, Context, "std::make_unique"), in MakeUniqueCheck()
|
H A D | CMakeLists.txt | 17 MakeSmartPtrCheck.cpp
|
/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/modernize/ |
H A D | BUILD.gn | 26 "MakeSmartPtrCheck.cpp",
|