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