clang-tools 20.0.0git
|
Classes | |
class | AssertEquals |
Warn if XCTAssertEqual() or XCTAssertNotEqual() is used with at least one operands of type NSString*. More... | |
class | AvoidNSErrorInitCheck |
Finds usages of -[NSError init]. More... | |
class | DeallocInCategoryCheck |
Finds implementations of -dealloc in Objective-C categories. More... | |
class | ForbiddenSubclassingCheck |
Finds Objective-C classes which have a superclass which is documented to not support subclassing. More... | |
class | MissingHashCheck |
Finds Objective-C implementations that implement -isEqual: without also appropriately implementing -hash. More... | |
class | NSDateFormatterCheck |
Checks the string pattern used as a date format specifier and reports warnings if it contains any incorrect sub-pattern. More... | |
class | NSInvocationArgumentLifetimeCheck |
Finds calls to NSInvocation methods under ARC that don't have proper argument object lifetimes. More... | |
class | ObjCModule |
class | PropertyDeclarationCheck |
class | SuperSelfCheck |
Finds invocations of -self on super instances in initializers of subclasses of NSObject and recommends calling a superclass initializer instead. More... | |
Functions | |
static const std::map< std::string, std::string > & | NameMap () |
bool | isValidDatePattern (StringRef Pattern) |
static ClangTidyModuleRegistry::Add< ObjCModule > | X ("objc-module", "Adds Objective-C lint checks.") |
Variables | |
static char | ValidDatePatternChars [] |
bool clang::tidy::objc::isValidDatePattern | ( | StringRef | Pattern | ) |
Definition at line 38 of file NSDateFormatterCheck.cpp.
References ValidDatePatternChars.
Referenced by clang::tidy::objc::NSDateFormatterCheck::check().
|
static |
Definition at line 19 of file AssertEquals.cpp.
Referenced by clang::tidy::objc::AssertEquals::check(), and clang::tidy::objc::AssertEquals::registerMatchers().
|
static |
|
static |
Definition at line 29 of file NSDateFormatterCheck.cpp.
Referenced by isValidDatePattern().