Searched defs:RefState (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp36 class RefState { class in namespace:__anon3884
47 RefState(Kind k, const Stmt *s) : K(k), S(s) {} function in class:__anon3884::RefState
55 bool operator==(const RefState &X) const {
59 static RefState getAllocated(const Stmt *s) {
60 return RefState(Allocated, s);
62 static RefState getReleased(const Stmt *s) { return RefState(Released, s); }
63 static RefState getRelinquished(const Stmt *s) {
64 return RefState(Relinquished, s);
178 /// Update the RefState t
[all...]

Completed in 17 milliseconds