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

/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp75 class RefVal { class in namespace:__anon18226
107 /// See the RefVal::Kind enum for possible values.
126 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t, function in class:__anon18226::RefVal
182 static RefVal makeOwned(RetEffect::ObjKind o, QualType t,
184 return RefVal(Owned, o, Count, 0, t);
191 static RefVal makeNotOwned(RetEffect::ObjKind o, QualType t,
193 return RefVal(NotOwned, o, Count, 0, t);
201 static RefVal makeOverridableNotOwned(RetEffect::ObjKind o, QualType t) {
202 return RefVal(NotOwned, o, 0, 0, t, /*Overridable=*/true);
205 RefVal operato
[all...]

Completed in 223 milliseconds