| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/ |
| H A D | ClangTidyCheck.h | 173 llvm::Optional<StringRef> getLocalOrGlobal(StringRef LocalName) const; 181 StringRef getLocalOrGlobal(StringRef LocalName, StringRef Default) const; 231 getLocalOrGlobal(StringRef LocalName) const { in getLocalOrGlobal() function 236 ValueOr = getLocalOrGlobal(LocalName); in getLocalOrGlobal() 260 getLocalOrGlobal(StringRef LocalName, T Default) const { in getLocalOrGlobal() function 261 return getLocalOrGlobal<T>(LocalName).value_or(Default); in getLocalOrGlobal() 318 getLocalOrGlobal(StringRef LocalName, bool IgnoreCase = false) const { 340 getLocalOrGlobal(StringRef LocalName, T Default, 342 return getLocalOrGlobal<T>(LocalName, IgnoreCase).value_or(Default); 449 ClangTidyCheck::OptionsView::getLocalOrGlobal<bool>(StringRef LocalName) const;
|
| H A D | ClangTidyCheck.cpp | 84 ClangTidyCheck::OptionsView::getLocalOrGlobal(StringRef LocalName) const { in getLocalOrGlobal() function in clang::tidy::ClangTidyCheck::OptionsView 118 ClangTidyCheck::OptionsView::getLocalOrGlobal<bool>(StringRef LocalName) const { in getLocalOrGlobal() function in clang::tidy::ClangTidyCheck::OptionsView 223 ClangTidyCheck::OptionsView::getLocalOrGlobal(StringRef LocalName, in getLocalOrGlobal() function in clang::tidy::ClangTidyCheck::OptionsView 225 return getLocalOrGlobal(LocalName).value_or(Default); in getLocalOrGlobal()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | InconsistentDeclarationParameterNameCheck.h | 30 IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true)), in InconsistentDeclarationParameterNameCheck() 31 Strict(Options.getLocalOrGlobal("Strict", false)) {} in InconsistentDeclarationParameterNameCheck()
|
| H A D | RedundantAccessSpecifiersCheck.h | 27 Options.getLocalOrGlobal("CheckFirstDeclaration", false)) {} in RedundantAccessSpecifiersCheck()
|
| H A D | RedundantSmartptrGetCheck.h | 31 IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true)) {} in RedundantSmartptrGetCheck()
|
| H A D | RedundantDeclarationCheck.cpp | 27 IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true)) {} in RedundantDeclarationCheck()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/ |
| H A D | SuspiciousIncludeCheck.cpp | 41 RawStringHeaderFileExtensions(Options.getLocalOrGlobal( in SuspiciousIncludeCheck() 43 RawStringImplementationFileExtensions(Options.getLocalOrGlobal( in SuspiciousIncludeCheck()
|
| H A D | DynamicStaticInitializersCheck.cpp | 32 RawStringHeaderFileExtensions(Options.getLocalOrGlobal( in DynamicStaticInitializersCheck()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/ |
| H A D | UseEqualsDeleteCheck.h | 41 IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true)) {} in UseEqualsDeleteCheck()
|
| H A D | UseBoolLiteralsCheck.cpp | 23 IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true)) {} in UseBoolLiteralsCheck()
|
| H A D | ReplaceRandomShuffleCheck.cpp | 26 IncludeInserter(Options.getLocalOrGlobal("IncludeStyle", in ReplaceRandomShuffleCheck()
|
| H A D | ReplaceAutoPtrCheck.cpp | 43 Inserter(Options.getLocalOrGlobal("IncludeStyle", in ReplaceAutoPtrCheck()
|
| H A D | MakeSmartPtrCheck.cpp | 46 Inserter(Options.getLocalOrGlobal("IncludeStyle", in MakeSmartPtrCheck() 53 IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true)), in MakeSmartPtrCheck()
|
| H A D | UseUsingCheck.cpp | 25 IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", true)) {} in UseUsingCheck()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/google/ |
| H A D | UnnamedNamespaceInHeaderCheck.cpp | 24 RawStringHeaderFileExtensions(Options.getLocalOrGlobal( in UnnamedNamespaceInHeaderCheck()
|
| H A D | GlobalNamesInHeadersCheck.cpp | 25 RawStringHeaderFileExtensions(Options.getLocalOrGlobal( in GlobalNamesInHeadersCheck()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/ |
| H A D | HeaderGuard.h | 31 RawStringHeaderFileExtensions(Options.getLocalOrGlobal( in HeaderGuardCheck()
|
| H A D | TransformerClangTidyCheck.cpp | 60 Inserter(Options.getLocalOrGlobal("IncludeStyle", IncludeSorter::IS_LLVM), in TransformerClangTidyCheck()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/performance/ |
| H A D | InefficientStringConcatenationCheck.cpp | 27 StrictMode(Options.getLocalOrGlobal("StrictMode", false)) {} in InefficientStringConcatenationCheck()
|
| H A D | TypePromotionInMathFnCheck.cpp | 34 IncludeInserter(Options.getLocalOrGlobal("IncludeStyle", in TypePromotionInMathFnCheck()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
| H A D | InitVariablesCheck.cpp | 29 IncludeInserter(Options.getLocalOrGlobal("IncludeStyle", in InitVariablesCheck()
|
| H A D | ProBoundsConstantArrayIndexCheck.cpp | 24 Inserter(Options.getLocalOrGlobal("IncludeStyle", in ProBoundsConstantArrayIndexCheck()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/ |
| H A D | DefinitionsInHeadersCheck.cpp | 34 RawStringHeaderFileExtensions(Options.getLocalOrGlobal( in DefinitionsInHeadersCheck()
|
| H A D | UniqueptrResetReleaseCheck.cpp | 22 Inserter(Options.getLocalOrGlobal("IncludeStyle", in UniqueptrResetReleaseCheck()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/abseil/ |
| H A D | StringFindStartswithCheck.cpp | 29 IncludeInserter(Options.getLocalOrGlobal("IncludeStyle", in StringFindStartswithCheck()
|