llvm/clang-tools-extra/clang-tidy/readability
2022-07-22 12:40:08 +01:00
..
AvoidConstParamsInDecls.cpp
AvoidConstParamsInDecls.h
BracesAroundStatementsCheck.cpp
BracesAroundStatementsCheck.h
CMakeLists.txt
ConstReturnTypeCheck.cpp [clang-tidy] Don't check decltype return types in readability-const-return-type 2022-03-17 14:27:09 +03:00
ConstReturnTypeCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
ContainerContainsCheck.cpp [clang-tidy] Fix logic of assertion 2022-05-19 08:13:23 +02:00
ContainerContainsCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
ContainerDataPointerCheck.cpp
ContainerDataPointerCheck.h
ContainerSizeEmptyCheck.cpp [clang-tidy] Fix readability-container-size-empty check for smart pointers 2022-04-20 17:03:30 +02:00
ContainerSizeEmptyCheck.h
ConvertMemberFunctionsToStatic.cpp
ConvertMemberFunctionsToStatic.h
DeleteNullPointerCheck.cpp
DeleteNullPointerCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
DuplicateIncludeCheck.cpp [clang][lex] NFCI: Use FileEntryRef in PPCallbacks::InclusionDirective() 2022-04-14 10:46:12 +02:00
DuplicateIncludeCheck.h
ElseAfterReturnCheck.cpp [clang-tidy][NFC] Add preposition "of" to code annotation of ElseAfterReturnCheck 2022-07-22 12:40:08 +01:00
ElseAfterReturnCheck.h
FunctionCognitiveComplexityCheck.cpp [clang-tidy][docs] Fix a couple of missed cases from 6e566bc552 2022-06-22 21:37:16 +01:00
FunctionCognitiveComplexityCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
FunctionSizeCheck.cpp
FunctionSizeCheck.h
IdentifierLengthCheck.cpp
IdentifierLengthCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
IdentifierNamingCheck.cpp Don't use Optional::hasValue (NFC) 2022-06-20 11:33:56 -07:00
IdentifierNamingCheck.h [clang-tidy][NFC] Tweak identifier-naming options reading/writiing 2022-06-10 07:07:21 +01:00
ImplicitBoolConversionCheck.cpp
ImplicitBoolConversionCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
InconsistentDeclarationParameterNameCheck.cpp
InconsistentDeclarationParameterNameCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
IsolateDeclarationCheck.cpp
IsolateDeclarationCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
MagicNumbersCheck.cpp [clang-tidy][NFC] Replace many instances of std::string where a StringRef would suffice. 2022-05-09 12:01:46 +01:00
MagicNumbersCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
MakeMemberFunctionConstCheck.cpp [clang-tidy] Skip parentheses in readability-make-member-function-const 2022-03-21 14:18:17 +03:00
MakeMemberFunctionConstCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
MisleadingIndentationCheck.cpp
MisleadingIndentationCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
MisplacedArrayIndexCheck.cpp
MisplacedArrayIndexCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
NamedParameterCheck.cpp
NamedParameterCheck.h
NamespaceCommentCheck.cpp
NamespaceCommentCheck.h
NonConstParameterCheck.cpp [clang-tidy] Fix readability-non-const-parameter for parameter referenced by an lvalue 2022-02-25 14:53:11 +08:00
NonConstParameterCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
QualifiedAutoCheck.cpp
QualifiedAutoCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
ReadabilityTidyModule.cpp
RedundantAccessSpecifiersCheck.cpp
RedundantAccessSpecifiersCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
RedundantControlFlowCheck.cpp [clang-tidy] RedundantControlFlowCheck::issueDiagnostic - use cast<> instead of dyn_cast<> to avoid dereference of nullptr 2022-02-12 11:05:59 +00:00
RedundantControlFlowCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
RedundantDeclarationCheck.cpp
RedundantDeclarationCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
RedundantFunctionPtrDereferenceCheck.cpp
RedundantFunctionPtrDereferenceCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
RedundantMemberInitCheck.cpp
RedundantMemberInitCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
RedundantPreprocessorCheck.cpp
RedundantPreprocessorCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
RedundantSmartptrGetCheck.cpp
RedundantSmartptrGetCheck.h
RedundantStringCStrCheck.cpp
RedundantStringCStrCheck.h
RedundantStringInitCheck.cpp [clang-tidy][NFC] Replace many instances of std::string where a StringRef would suffice. 2022-05-09 12:01:46 +01:00
RedundantStringInitCheck.h [clang-tidy][NFC] Replace many instances of std::string where a StringRef would suffice. 2022-05-09 12:01:46 +01:00
SimplifyBooleanExprCheck.cpp [clang-tidy] Extend SimplifyBooleanExpr demorgan support. 2022-05-25 13:09:00 +01:00
SimplifyBooleanExprCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
SimplifySubscriptExprCheck.cpp [clang-tidy][NFC] Replace many instances of std::string where a StringRef would suffice. 2022-05-09 12:01:46 +01:00
SimplifySubscriptExprCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
StaticAccessedThroughInstanceCheck.cpp [Clang-tidy] Check the existence of ElaboratedType's qualifiers 2022-03-01 23:52:44 +08:00
StaticAccessedThroughInstanceCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
StaticDefinitionInAnonymousNamespaceCheck.cpp
StaticDefinitionInAnonymousNamespaceCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
StringCompareCheck.cpp
StringCompareCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
SuspiciousCallArgumentCheck.cpp Don't use Optional::getValue (NFC) 2022-06-20 23:35:53 -07:00
SuspiciousCallArgumentCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
UniqueptrDeleteReleaseCheck.cpp
UniqueptrDeleteReleaseCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
UppercaseLiteralSuffixCheck.cpp [clang-tidy][NFC] Replace many instances of std::string where a StringRef would suffice. 2022-05-09 12:01:46 +01:00
UppercaseLiteralSuffixCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00
UseAnyOfAllOfCheck.cpp
UseAnyOfAllOfCheck.h [clang-tidy] Organize check doc files into subdirectories (NFC) 2022-06-16 16:06:20 -06:00