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
/
CheckObjCDealloc.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-09-25
Fix checking for a null pointer constant when the expression itself is
Douglas Gregor
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-07-16
Remove ASTContext::isObjCObjectPointerType().
Steve Naroff
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-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-02-11
Per PR 3187, disable the missing -dealloc check for classes that subclass Sen...
Ted Kremenek
2008-12-08
'self.myIvar = nil' (properties) only releases myIvar when the property has k...
Ted Kremenek
2008-11-24
Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of
Chris Lattner
2008-11-22
New AST node to access "implicit" setter/getter using property dor syntax.
Fariborz Jahanian
2008-11-04
Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'....
Douglas Gregor
2008-10-30
Distinguish between self.X = ... where self.X is a property reference and sel...
Ted Kremenek
2008-10-30
Patch by Nikita Zhuk:
Ted Kremenek
2008-10-29
Patch by Nikita Zhuk:
Ted Kremenek
2008-08-10
rename PreDefinedExpr -> PredefinedExpr
Chris Lattner
2008-07-25
Remove call to isSEL and isSEL itself since the call is dead (isObjCObjectPoi...
Ted Kremenek
2008-07-25
Only warn about missing/incomplete -dealloc implementations when a class cont...
Ted Kremenek
2008-07-24
Use ASTContext::isObjCObjectPointerType() to check if an ivar is a reference ...
Ted Kremenek
2008-07-24
Don't issue a missing +dealloc warning for classes that just contain SEL ivars.
Ted Kremenek
2008-07-15
For the MissingDealloc check, don't treat IBOutlet ivars as being needed to b...
Ted Kremenek
2008-07-14
Added method "EmitBasicReport" to BugReporter to simplify the emission of sim...
Ted Kremenek
2008-07-11
Fix comment.
Ted Kremenek
2008-07-07
Do not emit a "missing -dealloc" warning if a class contains no ivars that ar...
Ted Kremenek
2008-07-03
Skip the "-dealloc" check if a ObjC class contains no ivars.
Ted Kremenek
2008-07-03
For the -dealloc checker, check the LangOptions to determine whether or not t...
Ted Kremenek
2008-07-03
Added static analysis check to see if a subclass of NSObject implements -deal...
Ted Kremenek