Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp529 const ObjCIvarDecl *IvarDecl = IvarRegion->getDecl(); in diagnoseMissingReleases() local
532 if (IvarDecl->getContainingInterface() != in diagnoseMissingReleases()
558 const ObjCInterfaceDecl *Interface = IvarDecl->getContainingInterface(); in diagnoseMissingReleases()
569 ImplDecl->FindPropertyImplIvarDecl(IvarDecl->getIdentifier()); in diagnoseMissingReleases()
576 OS << "The '" << *IvarDecl << "' ivar in '" << *ImplDecl in diagnoseMissingReleases()
632 const ObjCIvarDecl *IvarDecl = IvarRegion->getDecl(); in findPropertyOnDeallocatingInstance() local
636 Container->FindPropertyImplIvarDecl(IvarDecl->getIdentifier()); in findPropertyOnDeallocatingInstance()
878 const ObjCIvarDecl *IvarDecl; in getDeallocReleaseRequirement() local
880 if (!isSynthesizedRetainableProperty(PropImpl, &IvarDecl, &PropDecl)) in getDeallocReleaseRequirement()
1062 const ObjCIvarDecl *IvarDecl = PropImpl->getPropertyIvarDecl(); in isNibLoadedIvarWithoutRetain() local
[all …]
H A DNullabilityChecker.cpp443 for (const auto *IvarDecl : ID->ivars()) { in checkSelfIvarsForInvariantViolation() local
444 SVal LV = State->getLValue(IvarDecl, SelfVal); in checkSelfIvarsForInvariantViolation()
445 if (checkValueAtLValForInvariantViolation(State, LV, IvarDecl->getType())) { in checkSelfIvarsForInvariantViolation()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp832 ObjCIvarDecl *IvarDecl, std::string &Result) { in WriteInternalIvarName() argument
836 Result += IvarDecl->getName(); in WriteInternalIvarName()
3961 for (ObjCIvarDecl *IvarDecl : Ivars) { in RewriteIvarOffsetSymbols()
3962 const ObjCInterfaceDecl *IDecl = IvarDecl->getContainingInterface(); in RewriteIvarOffsetSymbols()
3964 if (IvarDecl->isBitField()) { in RewriteIvarOffsetSymbols()
3965 GroupNo = ObjCIvarBitfieldGroupNo(IvarDecl); in RewriteIvarOffsetSymbols()
3974 IvarDecl->getAccessControl() != ObjCIvarDecl::Private && in RewriteIvarOffsetSymbols()
3975 IvarDecl->getAccessControl() != ObjCIvarDecl::Package) in RewriteIvarOffsetSymbols()
3979 if (IvarDecl->isBitField()) { in RewriteIvarOffsetSymbols()
3980 ObjCIvarBitfieldGroupOffset(IvarDecl, Result); in RewriteIvarOffsetSymbols()
[all …]