/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 | 66 const ObjCIvarDecl *ID = D->getPropertyIvarDecl(); in Scan()
|
H A D | DirectIvarAssignment.cpp | 98 ObjCIvarDecl *ID = PD->getPropertyIvarDecl(); in findPropertyBackingIvar()
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | TransZeroOutPropsInDealloc.cpp | 176 if (PropImpDecl && PropImpDecl->getPropertyIvarDecl() == IVDecl) { in isZeroingPropIvar()
|
H A D | TransProperties.cpp | 113 ObjCIvarDecl *ivarD = implD->getPropertyIvarDecl(); in doTransform()
|
/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() 1435 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCSetterBody() 3693 QualType Ty = PID->getPropertyIvarDecl()->getType(); in GenerateObjCAtomicSetterCopyHelperFunction()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclPrinter.cpp | 1706 if (PID->getPropertyIvarDecl()) in VisitObjCPropertyImplDecl() 1707 Out << '=' << *PID->getPropertyIvarDecl(); in VisitObjCPropertyImplDecl()
|
H A D | DeclObjC.cpp | 2235 if (PID->getPropertyIvarDecl() && in FindPropertyImplIvarDecl() 2236 PID->getPropertyIvarDecl()->getIdentifier() == ivarId) in FindPropertyImplIvarDecl()
|
H A D | JSONNodeDumper.cpp | 1227 JOS.attribute("ivarDecl", createBareDeclRef(D->getPropertyIvarDecl())); in VisitObjCPropertyImplDecl()
|
H A D | ASTImporter.cpp | 5796 auto ToPropertyIvarDecl = importChecked(Err, D->getPropertyIvarDecl()); in VisitObjCPropertyDecl() 5828 if (Error Err = importInto(Ivar, D->getPropertyIvarDecl())) in VisitObjCPropertyImplDecl() 5872 Ivar != ToImpl->getPropertyIvarDecl()) { in VisitObjCPropertyImplDecl() 5876 << ToImpl->getPropertyIvarDecl()->getDeclName() in VisitObjCPropertyImplDecl() 5880 << D->getPropertyIvarDecl()->getDeclName(); in VisitObjCPropertyImplDecl()
|
H A D | TextNodeDumper.cpp | 2848 dumpDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyImplDecl()
|
H A D | ASTContext.cpp | 8377 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl(); in getObjCEncodingForPropertyDecl()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclObjC.h | 923 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 | 844 !(property->getPropertyIvarDecl() && in findRetainCycleOwner() 845 property->getPropertyIvarDecl()->getType().getObjCLifetime() == in findRetainCycleOwner()
|
H A D | SemaObjCProperty.cpp | 1829 (Property->getPropertyIvarDecl() == IV)) in IvarBacksCurrentMethodAccessor() 1838 (Property->getPropertyIvarDecl() == IV)) in IvarBacksCurrentMethodAccessor()
|
H A D | SemaDeclObjC.cpp | 5309 if (ObjCIvarDecl *IV = PDecl->getPropertyIvarDecl()) { in GetIvarBackingPropertyAccessor()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | CallEvent.cpp | 986 if (const ObjCIvarDecl *PropIvar = PropDecl->getPropertyIvarDecl()) { in getExtraInvalidatedValues()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriterDecl.cpp | 987 Record.AddDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyDecl() 1022 Record.AddDeclRef(D->getPropertyIvarDecl()); in VisitObjCPropertyImplDecl()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 940 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); in RewritePropertyImplDecl() 7030 if (!Prop->getPropertyIvarDecl()) in RewriteObjCClassMetaData() 7280 if (!Prop->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()
|