summaryrefslogtreecommitdiffstats
path: root/lib/Analysis/CheckObjCDealloc.cpp
Commit message (Expand)AuthorAgeFilesLines
* Remove ASTContext::isObjCObjectPointerType().Steve Naroff2009-07-161-2/+2
* De-ASTContext-ify DeclContext.Argyrios Kyrtzidis2009-06-301-4/+4
* Remove the ASTContext parameter from the getBody() methods of Decl and subcla...Argyrios Kyrtzidis2009-06-301-2/+2
* Remove the ASTContext parameter from the attribute-related methods of Decl.Argyrios Kyrtzidis2009-06-301-1/+1
* Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor2009-06-181-1/+1
* Eliminate the three SmallVectors in ObjCImplDecl (for instanceDouglas Gregor2009-04-231-4/+4
* FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor2009-04-181-2/+2
* Per PR 3187, disable the missing -dealloc check for classes that subclass Sen...Ted Kremenek2009-02-111-3/+15
* 'self.myIvar = nil' (properties) only releases myIvar when the property has k...Ted Kremenek2008-12-081-2/+5
* Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of Chris Lattner2008-11-241-4/+5
* New AST node to access "implicit" setter/getter using property dor syntax.Fariborz Jahanian2008-11-221-2/+1
* Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'....Douglas Gregor2008-11-041-3/+1
* Distinguish between self.X = ... where self.X is a property reference and sel...Ted Kremenek2008-10-301-1/+2
* Patch by Nikita Zhuk:Ted Kremenek2008-10-301-11/+43
* Patch by Nikita Zhuk:Ted Kremenek2008-10-291-3/+82
* rename PreDefinedExpr -> PredefinedExprChris Lattner2008-08-101-2/+2
* Remove call to isSEL and isSEL itself since the call is dead (isObjCObjectPoi...Ted Kremenek2008-07-251-10/+1
* Only warn about missing/incomplete -dealloc implementations when a class cont...Ted Kremenek2008-07-251-6/+7
* Use ASTContext::isObjCObjectPointerType() to check if an ivar is a reference ...Ted Kremenek2008-07-241-3/+3
* Don't issue a missing +dealloc warning for classes that just contain SEL ivars.Ted Kremenek2008-07-241-1/+10
* For the MissingDealloc check, don't treat IBOutlet ivars as being needed to b...Ted Kremenek2008-07-151-2/+4
* Added method "EmitBasicReport" to BugReporter to simplify the emission of sim...Ted Kremenek2008-07-141-32/+11
* Fix comment.Ted Kremenek2008-07-111-2/+3
* Do not emit a "missing -dealloc" warning if a class contains no ivars that ar...Ted Kremenek2008-07-071-3/+19
* Skip the "-dealloc" check if a ObjC class contains no ivars.Ted Kremenek2008-07-031-2/+7
* For the -dealloc checker, check the LangOptions to determine whether or not t...Ted Kremenek2008-07-031-4/+14
* Added static analysis check to see if a subclass of NSObject implements -deal...Ted Kremenek2008-07-031-0/+118