Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
DCheckObjCDealloc.cpp522 const ObjCIvarDecl *IvarDecl = IvarRegion->getDecl(); in diagnoseMissingReleases() local
525 if (IvarDecl->getContainingInterface() != in diagnoseMissingReleases()
551 const ObjCInterfaceDecl *Interface = IvarDecl->getContainingInterface(); in diagnoseMissingReleases()
562 ImplDecl->FindPropertyImplIvarDecl(IvarDecl->getIdentifier()); in diagnoseMissingReleases()
569 OS << "The '" << *IvarDecl << "' ivar in '" << *ImplDecl in diagnoseMissingReleases()
625 const ObjCIvarDecl *IvarDecl = IvarRegion->getDecl(); in findPropertyOnDeallocatingInstance() local
629 Container->FindPropertyImplIvarDecl(IvarDecl->getIdentifier()); in findPropertyOnDeallocatingInstance()
888 const ObjCIvarDecl *IvarDecl; in getDeallocReleaseRequirement() local
890 if (!isSynthesizedRetainableProperty(PropImpl, &IvarDecl, &PropDecl)) in getDeallocReleaseRequirement()
1072 const ObjCIvarDecl *IvarDecl = PropImpl->getPropertyIvarDecl(); in isNibLoadedIvarWithoutRetain() local
[all …]
DIvarInvalidationChecker.cpp199 const ObjCIvarDecl *IvarDecl,
345 const ObjCIvarDecl *IvarDecl, in printIvar() argument
347 if (IvarDecl->getSynthesize()) { in printIvar()
348 const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl); in printIvar()
352 os << "Instance variable "<< IvarDecl->getName() << " "; in printIvar()
DNullabilityChecker.cpp435 for (const auto *IvarDecl : ID->ivars()) { in checkSelfIvarsForInvariantViolation() local
436 SVal LV = State->getLValue(IvarDecl, SelfVal); in checkSelfIvarsForInvariantViolation()
437 if (checkValueAtLValForInvariantViolation(State, LV, IvarDecl->getType())) { in checkSelfIvarsForInvariantViolation()
/openbsd/src/gnu/llvm/clang/lib/Frontend/Rewrite/
DRewriteModernObjC.cpp833 ObjCIvarDecl *IvarDecl, std::string &Result) { in WriteInternalIvarName() argument
837 Result += IvarDecl->getName(); in WriteInternalIvarName()
3963 for (ObjCIvarDecl *IvarDecl : Ivars) { in RewriteIvarOffsetSymbols()
3964 const ObjCInterfaceDecl *IDecl = IvarDecl->getContainingInterface(); in RewriteIvarOffsetSymbols()
3966 if (IvarDecl->isBitField()) { in RewriteIvarOffsetSymbols()
3967 GroupNo = ObjCIvarBitfieldGroupNo(IvarDecl); in RewriteIvarOffsetSymbols()
3976 IvarDecl->getAccessControl() != ObjCIvarDecl::Private && in RewriteIvarOffsetSymbols()
3977 IvarDecl->getAccessControl() != ObjCIvarDecl::Package) in RewriteIvarOffsetSymbols()
3981 if (IvarDecl->isBitField()) { in RewriteIvarOffsetSymbols()
3982 ObjCIvarBitfieldGroupOffset(IvarDecl, Result); in RewriteIvarOffsetSymbols()
[all …]