Lines Matching refs:ObjCPropertyDecl

125     const ObjCPropertyDecl *Property) const {  in HasUserDeclaredSetterMethod()
150 if (P->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readwrite) in HasUserDeclaredSetterMethod()
176 ObjCPropertyDecl *
177 ObjCPropertyDecl::findPropertyDecl(const DeclContext *DC, in findPropertyDecl()
192 if (ObjCPropertyDecl *PD = ObjCPropertyDecl::findPropertyDecl(Ext, in findPropertyDecl()
199 ObjCPropertyDecl *classProp = nullptr; in findPropertyDecl()
202 if (auto *PD = dyn_cast<ObjCPropertyDecl>(*I)) { in findPropertyDecl()
225 ObjCPropertyDecl::getDefaultSynthIvarName(ASTContext &Ctx) const { in getDefaultSynthIvarName()
236 ObjCPropertyDecl *ObjCContainerDecl::FindPropertyDeclaration( in FindPropertyDeclaration()
255 if (ObjCPropertyDecl *PD = in FindPropertyDeclaration()
256 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId, in FindPropertyDeclaration()
266 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
276 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration( in FindPropertyDeclaration()
283 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
297 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
368 ObjCPropertyDecl *
379 if (ObjCPropertyDecl *PD = in FindPropertyVisibleInPrimaryClass()
380 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId, in FindPropertyVisibleInPrimaryClass()
386 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyVisibleInPrimaryClass()
1301 const ObjCPropertyDecl *
1316 [&](const ObjCContainerDecl *Container) -> const ObjCPropertyDecl * { in findPropertyDecl()
1373 if (const ObjCPropertyDecl *Prop = Override->findPropertyDecl(false)) in findPropertyDecl()
1941 const ObjCPropertyDecl *Property, ProtocolPropertySet &PS, in collectInheritedProtocolProperties()
2217 void ObjCPropertyDecl::anchor() {} in anchor()
2219 ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2227 return new (C, DC) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T, TSI, in Create()
2231 ObjCPropertyDecl *ObjCPropertyDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
2233 return new (C, ID) ObjCPropertyDecl(nullptr, SourceLocation(), nullptr, in CreateDeserialized()
2238 QualType ObjCPropertyDecl::getUsageType(QualType objectType) const { in getUsageType()
2251 ObjCPropertyDecl *property, in Create()