aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CheckObjCUnusedIVars.cpp
AgeCommit message (Expand)Author
2010-01-25Split libAnalysis into two libraries: libAnalysis and libChecker.Ted Kremenek
2009-11-29Port BugReporter and BugType to StringRef.Benjamin Kramer
2009-11-28Cleanup includes and forward decls.Benjamin Kramer
2009-11-20Unused ivar checker: ivars referenced by lexically nested functions should no...Ted Kremenek
2009-10-28Unused ivars checker: also check methods in categories that are defined in th...Ted Kremenek
2009-10-28Pull ivar scanning logic into another utility function. This refactoring will...Ted Kremenek
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-08-21Remove 'AnalysisContext::setDecl()', as we the Decl associated with anTed Kremenek
2009-08-07Fix: <rdar://problem/7075531> static analyzer wrongly detects unused ivars us...Ted Kremenek
2009-08-07Constify some pointers. No functionality change.Ted Kremenek
2009-06-30remove dead code.Zhongxing Xu
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the getBody() methods of Decl and subcla...Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the attribute-related methods of Decl.Argyrios Kyrtzidis
2009-06-24Remove uses of std::ostream from libAnalysis.Ted Kremenek
2009-06-18Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor
2009-04-23Eliminate the three SmallVectors in ObjCImplDecl (for instanceDouglas Gregor
2009-04-18FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor
2009-04-02More title-casing of bug type names.Ted Kremenek
2008-11-24Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of Chris Lattner
2008-09-21The "unused ivar" check now has a category: "Optimization"Ted Kremenek
2008-07-25Have the UnusedIvar check skip ivars with setters/getters created by @synthes...Ted Kremenek
2008-07-23Properly skip IBOutlets when checking for unused ivars.Ted Kremenek
2008-07-23Ivar access mode ObjCIvarDecl::None == ObjCIvarDecl::Protected, not private.Ted Kremenek
2008-07-23Add prototype implementation of unused ivar check.Ted Kremenek