HomeSort by: relevance | last modified time | path
    Searched refs:SelfVal (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 258 SVal SelfVal;
259 if (!isInInstanceDealloc(C, SelfVal))
262 SymbolRef SelfSymbol = SelfVal.getAsSymbol();
284 SVal LVal = State->getLValue(PropImpl->getPropertyIvarDecl(), SelfVal);
490 SVal SelfVal;
491 if (!isInInstanceDealloc(C, SelfVal))
494 const MemRegion *SelfRegion = SelfVal.castAs<loc::MemRegionVal>().getRegion();
499 SymbolRef SelfSym = SelfVal.getAsSymbol();
NullabilityChecker.cpp 388 SVal SelfVal = State->getSVal(State->getRegion(SelfDecl, LocCtxt));
400 SVal LV = State->getLValue(IvarDecl, SelfVal);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 982 SVal SelfVal = getState()->getSelfSVal(getLocationContext());
983 assert(SelfVal.isValid() && "Calling super but not in ObjC method");
984 return SelfVal;
996 SVal SelfVal = getState()->getSelfSVal(getLocationContext());
998 return (RecVal == SelfVal);
1282 SVal SelfVal = getState()->getSelfSVal(getLocationContext());
1284 if (Receiver == SelfVal.getAsRegion()) {
1360 SVal SelfVal = getReceiverSVal();
1361 if (!SelfVal.isUnknown()) {
1365 Bindings.push_back(std::make_pair(SelfLoc, SelfVal));
    [all...]

Completed in 70 milliseconds