| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CheckObjCDealloc.cpp | 76 (*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 D | ObjCUnusedIVarsChecker.cpp | 65 const ObjCIvarDecl *ID = D->getPropertyIvarDecl(); in Scan()
|
| H A D | DirectIvarAssignment.cpp | 98 ObjCIvarDecl *ID = PD->getPropertyIvarDecl(); in findPropertyBackingIvar()
|
| H A D | IvarInvalidationChecker.cpp | 306 IvarD = Prop->getPropertyIvarDecl(); in findPropertyBackingIvar()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 747 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 D | RawPtrRefMemberChecker.cpp | 206 if (auto *IvarDecl = PID->getPropertyIvarDecl()) { in visitPropImpl()
|
| /freebsd/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexDecl.cpp | 545 if (ObjCIvarDecl *ID = D->getPropertyIvarDecl()) in VisitObjCPropertyImplDecl() 567 if (ObjCIvarDecl *IvarD = D->getPropertyIvarDecl()) { in VisitObjCPropertyImplDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 927 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 D | DeclPrinter.cpp | 1742 if (PID->getPropertyIvarDecl()) in VisitObjCPropertyImplDecl() 1743 Out << '=' << *PID->getPropertyIvarDecl(); in VisitObjCPropertyImplDecl()
|
| H A D | DeclObjC.cpp | 2232 if (PID->getPropertyIvarDecl() && in FindPropertyImplIvarDecl() 2233 PID->getPropertyIvarDecl()->getIdentifier() == ivarId) in FindPropertyImplIvarDecl()
|
| H A D | JSONNodeDumper.cpp | 1235 JOS.attribute("ivarDecl", createBareDeclRef(D->getPropertyIvarDecl())); in VisitObjCPropertyImplDecl()
|
| H A D | ASTImporter.cpp | 6072 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 D | TextNodeDumper.cpp | 3012 dumpDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyImplDecl()
|
| H A D | ASTContext.cpp | 8975 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl(); in getObjCEncodingForPropertyDecl()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 921 ObjCIvarDecl *getPropertyIvarDecl() const { in getPropertyIvarDecl() function 2876 ObjCIvarDecl *getPropertyIvarDecl() const { in getPropertyIvarDecl() function
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaObjC.cpp | 840 !(property->getPropertyIvarDecl() && in findRetainCycleOwner() 841 property->getPropertyIvarDecl()->getType().getObjCLifetime() == in findRetainCycleOwner()
|
| H A D | SemaObjCProperty.cpp | 1840 (Property->getPropertyIvarDecl() == IV)) in IvarBacksCurrentMethodAccessor() 1849 (Property->getPropertyIvarDecl() == IV)) in IvarBacksCurrentMethodAccessor()
|
| H A D | SemaDeclObjC.cpp | 5313 if (ObjCIvarDecl *IV = PDecl->getPropertyIvarDecl()) { in GetIvarBackingPropertyAccessor()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | CallEvent.cpp | 1006 if (const ObjCIvarDecl *PropIvar = PropDecl->getPropertyIvarDecl()) { in getExtraInvalidatedValues()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 1160 Record.AddDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyDecl() 1195 Record.AddDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyImplDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 784 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); in RewritePropertyImplDecl() 5336 if (!Prop->getPropertyIvarDecl()) in RewriteObjCClassMetaData() 5614 if (!Prop->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()
|
| H A D | RewriteModernObjC.cpp | 939 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); in RewritePropertyImplDecl() 6996 if (!Prop->getPropertyIvarDecl()) in RewriteObjCClassMetaData() 7246 if (!Prop->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()
|