Lines Matching refs:ObjCPropertyDecl

126     const ObjCPropertyDecl *Property) const {  in HasUserDeclaredSetterMethod()
178 ObjCPropertyDecl *
179 ObjCPropertyDecl::findPropertyDecl(const DeclContext *DC, in findPropertyDecl()
194 if (ObjCPropertyDecl *PD = ObjCPropertyDecl::findPropertyDecl(Ext, in findPropertyDecl()
201 ObjCPropertyDecl *classProp = nullptr; in findPropertyDecl()
204 if (auto *PD = dyn_cast<ObjCPropertyDecl>(*I)) { in findPropertyDecl()
227 ObjCPropertyDecl::getDefaultSynthIvarName(ASTContext &Ctx) const { in getDefaultSynthIvarName()
236 ObjCPropertyDecl *ObjCContainerDecl::getProperty(const IdentifierInfo *Id, in getProperty()
239 if (auto *Prop = dyn_cast<ObjCPropertyDecl>(LookupResult)) { in getProperty()
250 ObjCPropertyDecl *ObjCContainerDecl::FindPropertyDeclaration( in FindPropertyDeclaration()
269 if (ObjCPropertyDecl *PD = in FindPropertyDeclaration()
270 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId, in FindPropertyDeclaration()
280 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
290 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration( in FindPropertyDeclaration()
297 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
311 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
382 ObjCPropertyDecl *ObjCInterfaceDecl::FindPropertyVisibleInPrimaryClass( in FindPropertyVisibleInPrimaryClass()
391 if (ObjCPropertyDecl *PD = in FindPropertyVisibleInPrimaryClass()
392 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId, in FindPropertyVisibleInPrimaryClass()
398 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyVisibleInPrimaryClass()
1377 const ObjCPropertyDecl *
1397 [&](const ObjCContainerDecl *Container) -> const ObjCPropertyDecl * { in findPropertyDecl()
1461 if (const ObjCPropertyDecl *Prop = Override->findPropertyDecl(false)) in findPropertyDecl()
2057 const ObjCPropertyDecl *Property, ProtocolPropertySet &PS, in collectInheritedProtocolProperties()
2352 void ObjCPropertyDecl::anchor() {} in anchor()
2354 ObjCPropertyDecl *
2355 ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, in Create()
2359 return new (C, DC) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T, TSI, in Create()
2363 ObjCPropertyDecl *ObjCPropertyDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
2365 return new (C, ID) ObjCPropertyDecl(nullptr, SourceLocation(), nullptr, in CreateDeserialized()
2370 QualType ObjCPropertyDecl::getUsageType(QualType objectType) const { in getUsageType()
2375 bool ObjCPropertyDecl::isDirectProperty() const { in isDirectProperty()
2388 ObjCPropertyDecl *property, in Create()