Searched refs:RefState (Results 1 – 1 of 1) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MallocChecker.cpp | 126 class RefState { class 148 RefState(Kind k, const Stmt *s, AllocationFamily family) in RefState() function in __anon093a02e60211::RefState 162 bool operator==(const RefState &X) const { in operator ==() 166 static RefState getAllocated(AllocationFamily family, const Stmt *s) { in getAllocated() 167 return RefState(Allocated, s, family); in getAllocated() 169 static RefState getAllocatedOfSizeZero(const RefState *RS) { in getAllocatedOfSizeZero() 170 return RefState(AllocatedOfSizeZero, RS->getStmt(), in getAllocatedOfSizeZero() 173 static RefState getReleased(AllocationFamily family, const Stmt *s) { in getReleased() 174 return RefState(Released, s, family); in getReleased() 176 static RefState getRelinquished(AllocationFamily family, const Stmt *s) { in getRelinquished() [all …]
|