Searched refs:SelfVal (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp258 SVal SelfVal; local
259 if (!isInInstanceDealloc(C, SelfVal))
262 SymbolRef SelfSymbol = SelfVal.getAsSymbol();
284 SVal LVal = State->getLValue(PropImpl->getPropertyIvarDecl(), SelfVal);
490 SVal SelfVal; local
491 if (!isInInstanceDealloc(C, SelfVal))
494 const MemRegion *SelfRegion = SelfVal.castAs<loc::MemRegionVal>().getRegion();
499 SymbolRef SelfSym = SelfVal.getAsSymbol();
H A DNullabilityChecker.cpp388 SVal SelfVal = State->getSVal(State->getRegion(SelfDecl, LocCtxt));
400 SVal LV = State->getLValue(IvarDecl, SelfVal);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp982 SVal SelfVal = getState()->getSelfSVal(getLocationContext()); local
983 assert(SelfVal.isValid() && "Calling super but not in ObjC method");
984 return SelfVal;
996 SVal SelfVal = getState()->getSelfSVal(getLocationContext()); local
998 return (RecVal == SelfVal);
1282 SVal SelfVal = getState()->getSelfSVal(getLocationContext()); local
1284 if (Receiver == SelfVal.getAsRegion()) {
1360 SVal SelfVal = getReceiverSVal(); local
1361 if (!SelfVal.isUnknown()) {
1365 Bindings.push_back(std::make_pair(SelfLoc, SelfVal));
[all...]

Completed in 164 milliseconds