Home
last modified time | relevance | path

Searched refs:getPropertyIvarDecl (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp76 (*ID) = I->getPropertyIvarDecl(); in isSynthesizedRetainableProperty()
242 << "must release '" << *PropImplRequiringRelease->getPropertyIvarDecl() in REGISTER_SET_FACTORY_WITH_PROGRAMSTATE()
290 SVal LVal = State->getLValue(PropImpl->getPropertyIvarDecl(), SelfVal); in checkBeginFunction()
692 OS << "The '" << *PropImpl->getPropertyIvarDecl() in diagnoseExtraRelease()
748 OS << "'" << *PropImpl->getPropertyIvarDecl() in diagnoseMistakenDealloc()
940 ObjCIvarDecl *PropIvarDecl = Prop->getPropertyIvarDecl(); in getValueReleasedByNillingOut()
1031 assert(PropImpl->getPropertyIvarDecl()); in isReleasedByCIFilterDealloc()
1033 StringRef IvarName = PropImpl->getPropertyIvarDecl()->getName(); in isReleasedByCIFilterDealloc()
1042 PropImpl->getPropertyIvarDecl()->getContainingInterface(); in isReleasedByCIFilterDealloc()
1062 const ObjCIvarDecl *IvarDecl = PropImpl->getPropertyIvarDecl(); in isNibLoadedIvarWithoutRetain()
H A DObjCUnusedIVarsChecker.cpp65 const ObjCIvarDecl *ID = D->getPropertyIvarDecl(); in Scan()
H A DDirectIvarAssignment.cpp98 ObjCIvarDecl *ID = PD->getPropertyIvarDecl(); in findPropertyBackingIvar()
H A DIvarInvalidationChecker.cpp306 IvarD = Prop->getPropertyIvarDecl(); in findPropertyBackingIvar()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp747 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl(); in findBackingIvar()
779 IVar = ShadowingProp->getPropertyIvarDecl(); in findBackingIvar()
801 IVar = Prop->getPropertyIvarDecl(); in createObjCPropertyGetter()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRawPtrRefMemberChecker.cpp206 if (auto *IvarDecl = PID->getPropertyIvarDecl()) { in visitPropImpl()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp545 if (ObjCIvarDecl *ID = D->getPropertyIvarDecl()) in VisitObjCPropertyImplDecl()
567 if (ObjCIvarDecl *IvarD = D->getPropertyIvarDecl()) { in VisitObjCPropertyImplDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp927 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in PropertyImplStrategy()
1140 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1149 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1165 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1471 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCSetterBody()
3739 QualType Ty = PID->getPropertyIvarDecl()->getType(); in GenerateObjCAtomicSetterCopyHelperFunction()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1742 if (PID->getPropertyIvarDecl()) in VisitObjCPropertyImplDecl()
1743 Out << '=' << *PID->getPropertyIvarDecl(); in VisitObjCPropertyImplDecl()
H A DDeclObjC.cpp2232 if (PID->getPropertyIvarDecl() && in FindPropertyImplIvarDecl()
2233 PID->getPropertyIvarDecl()->getIdentifier() == ivarId) in FindPropertyImplIvarDecl()
H A DJSONNodeDumper.cpp1235 JOS.attribute("ivarDecl", createBareDeclRef(D->getPropertyIvarDecl())); in VisitObjCPropertyImplDecl()
H A DASTImporter.cpp6072 auto ToPropertyIvarDecl = importChecked(Err, D->getPropertyIvarDecl()); in VisitObjCPropertyDecl()
6104 if (Error Err = importInto(Ivar, D->getPropertyIvarDecl())) in VisitObjCPropertyImplDecl()
6148 Ivar != ToImpl->getPropertyIvarDecl()) { in VisitObjCPropertyImplDecl()
6152 << ToImpl->getPropertyIvarDecl()->getDeclName() in VisitObjCPropertyImplDecl()
6156 << D->getPropertyIvarDecl()->getDeclName(); in VisitObjCPropertyImplDecl()
H A DTextNodeDumper.cpp3012 dumpDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyImplDecl()
H A DASTContext.cpp8975 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl(); in getObjCEncodingForPropertyDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h921 ObjCIvarDecl *getPropertyIvarDecl() const { in getPropertyIvarDecl() function
2876 ObjCIvarDecl *getPropertyIvarDecl() const { in getPropertyIvarDecl() function
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjC.cpp840 !(property->getPropertyIvarDecl() && in findRetainCycleOwner()
841 property->getPropertyIvarDecl()->getType().getObjCLifetime() == in findRetainCycleOwner()
H A DSemaObjCProperty.cpp1840 (Property->getPropertyIvarDecl() == IV)) in IvarBacksCurrentMethodAccessor()
1849 (Property->getPropertyIvarDecl() == IV)) in IvarBacksCurrentMethodAccessor()
H A DSemaDeclObjC.cpp5313 if (ObjCIvarDecl *IV = PDecl->getPropertyIvarDecl()) { in GetIvarBackingPropertyAccessor()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp1006 if (const ObjCIvarDecl *PropIvar = PropDecl->getPropertyIvarDecl()) { in getExtraInvalidatedValues()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp1160 Record.AddDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyDecl()
1195 Record.AddDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyImplDecl()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp784 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); in RewritePropertyImplDecl()
5336 if (!Prop->getPropertyIvarDecl()) in RewriteObjCClassMetaData()
5614 if (!Prop->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()
H A DRewriteModernObjC.cpp939 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); in RewritePropertyImplDecl()
6996 if (!Prop->getPropertyIvarDecl()) in RewriteObjCClassMetaData()
7246 if (!Prop->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()