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
/
CheckNSError.cpp
Age
Commit message (
Expand
)
Author
2009-11-03
Rename NSErrorCheck to NSErrorChecker.
Ted Kremenek
2009-10-30
Move NullDerefChecker.h instead a 'Checkers' subdirectory.
Ted Kremenek
2009-10-29
Add an assertion to ensure NullDerefChecker exists.
Zhongxing Xu
2009-10-29
Move NullDeref and UndefDeref into their own checker.
Zhongxing Xu
2009-09-21
Change all the Type::getAsFoo() methods to specializations of Type::getAs().
John McCall
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-01
Sentence-case bug category.
Ted Kremenek
2009-08-21
Add LocationContext* field to VarRegion. This is needed for interprocedural ...
Ted Kremenek
2009-08-21
Tie the local check NSErrorCheck to a Decl to pave the way
Zhongxing Xu
2009-08-06
Last step of template cleanup: merge *BuilderImpl to *Builder.
Zhongxing Xu
2009-08-06
Fix typo reported in <rdar://problem/7121409>.
Ted Kremenek
2009-07-29
Change uses of:
Ted Kremenek
2009-07-17
Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods
Ted Kremenek
2009-07-16
Add member template 'Type::getAs<T>', which converts a Type* to a respective T*.
Ted Kremenek
2009-07-10
This patch includes a conceptually simple, but very intrusive/pervasive change.
Steve Naroff
2009-06-17
Remove more uses of GRStateRef.
Ted Kremenek
2009-03-30
Simplify more code by using SVal::getAsSymbol().
Ted Kremenek
2009-02-04
Overhaul BugReporter interface and implementation. The new interface cleans up
Ted Kremenek
2008-11-24
Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of
Chris Lattner
2008-10-17
- constify some uses of MemRegion* (MemRegion should be immutable).
Ted Kremenek
2008-10-17
This patch did the following renaming. There should be no functional changes.
Zhongxing Xu
2008-10-17
Remove lval::FieldOffset, lval::ArrayOffset. These will be replaced with regi...
Ted Kremenek
2008-10-04
This is a big patch, but the functionality change is small and the rest of th...
Ted Kremenek
2008-10-01
Enhance NSError** checking with analogous checking for CFErrorRef*.
Ted Kremenek
2008-09-21
Add a bug category for NSError** checks.
Ted Kremenek
2008-09-18
Register the implicit null-dereferenced object as a notable symbol.
Ted Kremenek
2008-09-18
Implement second part of PR 2600: NSError** parameter may be null, and should...
Ted Kremenek
2008-09-18
Change implementation of NSError** coding-style check to be invoked at the en...
Ted Kremenek
2008-09-18
Implemented one of the checks requested in PR 2600:
Ted Kremenek