Searched refs:hasSelfFlag (Results 1 – 1 of 1) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCSelfInitChecker.cpp | 132 static bool hasSelfFlag(SVal val, SelfFlagEnum flag, CheckerContext &C) { in hasSelfFlag() function 141 if (!hasSelfFlag(exprVal, SelfFlag_Self, C)) in isInvalidSelf() 143 if (hasSelfFlag(exprVal, SelfFlag_InitRes, C)) in isInvalidSelf() 261 } else if (hasSelfFlag(argV, SelfFlag_Self, C)) { in checkPreCall() 291 } else if (hasSelfFlag(argV, SelfFlag_Self, C)) { in checkPostCall() 328 !hasSelfFlag(val, SelfFlag_InitRes, C) && in checkBind() 329 !hasSelfFlag(val, SelfFlag_Self, C) && in checkBind()
|