Home
last modified time | relevance | path

Searched refs:IvarDecl (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DCheckObjCDealloc.cpp528 const ObjCIvarDecl *IvarDecl = IvarRegion->getDecl(); in diagnoseMissingReleases() local
531 if (IvarDecl->getContainingInterface() != in diagnoseMissingReleases()
557 const ObjCInterfaceDecl *Interface = IvarDecl->getContainingInterface(); in diagnoseMissingReleases()
568 ImplDecl->FindPropertyImplIvarDecl(IvarDecl->getIdentifier()); in diagnoseMissingReleases()
575 OS << "The '" << *IvarDecl << "' ivar in '" << *ImplDecl in diagnoseMissingReleases()
632 const ObjCIvarDecl *IvarDecl = IvarRegion->getDecl(); in findPropertyOnDeallocatingInstance() local
636 Container->FindPropertyImplIvarDecl(IvarDecl->getIdentifier()); in findPropertyOnDeallocatingInstance()
891 const ObjCIvarDecl *IvarDecl; in getDeallocReleaseRequirement() local
893 if (!isSynthesizedRetainableProperty(PropImpl, &IvarDecl, &PropDecl)) in getDeallocReleaseRequirement()
DIvarInvalidationChecker.cpp200 const ObjCIvarDecl *IvarDecl,
346 const ObjCIvarDecl *IvarDecl, in printIvar() argument
348 if (IvarDecl->getSynthesize()) { in printIvar()
349 const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl); in printIvar()
353 os << "Instance variable "<< IvarDecl->getName() << " "; in printIvar()
DNullabilityChecker.cpp420 for (const auto *IvarDecl : ID->ivars()) { in checkSelfIvarsForInvariantViolation() local
421 SVal LV = State->getLValue(IvarDecl, SelfVal); in checkSelfIvarsForInvariantViolation()
422 if (checkValueAtLValForInvariantViolation(State, LV, IvarDecl->getType())) { in checkSelfIvarsForInvariantViolation()
/external/clang/lib/Frontend/Rewrite/
DRewriteModernObjC.cpp828 ObjCIvarDecl *IvarDecl, std::string &Result) { in WriteInternalIvarName() argument
832 Result += IvarDecl->getName(); in WriteInternalIvarName()
3970 for (ObjCIvarDecl *IvarDecl : Ivars) { in RewriteIvarOffsetSymbols()
3971 const ObjCInterfaceDecl *IDecl = IvarDecl->getContainingInterface(); in RewriteIvarOffsetSymbols()
3973 if (IvarDecl->isBitField()) { in RewriteIvarOffsetSymbols()
3974 GroupNo = ObjCIvarBitfieldGroupNo(IvarDecl); in RewriteIvarOffsetSymbols()
3983 IvarDecl->getAccessControl() != ObjCIvarDecl::Private && in RewriteIvarOffsetSymbols()
3984 IvarDecl->getAccessControl() != ObjCIvarDecl::Package) in RewriteIvarOffsetSymbols()
3988 if (IvarDecl->isBitField()) { in RewriteIvarOffsetSymbols()
3989 ObjCIvarBitfieldGroupOffset(IvarDecl, Result); in RewriteIvarOffsetSymbols()
[all …]