OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RefState
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp
29
class
RefState
{
35
RefState
(Kind k, const Stmt *s) : K(k), S(s) {}
43
bool operator==(const
RefState
&X) const {
47
static
RefState
getAllocateUnchecked(const Stmt *s) {
48
return
RefState
(AllocateUnchecked, s);
50
static
RefState
getAllocateFailed() {
51
return
RefState
(AllocateFailed, 0);
53
static
RefState
getReleased(const Stmt *s) { return
RefState
(Released, s); }
54
static
RefState
getEscaped(const Stmt *s) { return RefState(Escaped, s);
[
all
...]
IteratorsChecker.cpp
39
class
RefState
{
44
RefState
(Kind k, const void *vr) : K(k), VR(vr) {}
61
bool operator==(const
RefState
&X) const {
65
static
RefState
getBeginValid(const MemRegion *vr) {
67
return
RefState
(BeginValid, vr);
69
static
RefState
getEndValid(const MemRegion *vr) {
71
return
RefState
(EndValid, vr);
73
static
RefState
getInvalid( const MemberExpr *ME ) {
74
return
RefState
(Invalid, ME);
76
static
RefState
getUndefined( void )
[
all
...]
Completed in 64 milliseconds