Lines Matching refs:ObjCPropertyDecl
125 const ObjCPropertyDecl *Property) const { in HasUserDeclaredSetterMethod()
177 ObjCPropertyDecl *
178 ObjCPropertyDecl::findPropertyDecl(const DeclContext *DC, in findPropertyDecl()
193 if (ObjCPropertyDecl *PD = ObjCPropertyDecl::findPropertyDecl(Ext, in findPropertyDecl()
200 ObjCPropertyDecl *classProp = nullptr; in findPropertyDecl()
203 if (auto *PD = dyn_cast<ObjCPropertyDecl>(*I)) { in findPropertyDecl()
226 ObjCPropertyDecl::getDefaultSynthIvarName(ASTContext &Ctx) const { in getDefaultSynthIvarName()
235 ObjCPropertyDecl *ObjCContainerDecl::getProperty(const IdentifierInfo *Id, in getProperty()
238 if (auto *Prop = dyn_cast<ObjCPropertyDecl>(LookupResult)) { in getProperty()
249 ObjCPropertyDecl *ObjCContainerDecl::FindPropertyDeclaration( in FindPropertyDeclaration()
268 if (ObjCPropertyDecl *PD = in FindPropertyDeclaration()
269 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId, in FindPropertyDeclaration()
279 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
289 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration( in FindPropertyDeclaration()
296 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
310 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyDeclaration()
381 ObjCPropertyDecl *
392 if (ObjCPropertyDecl *PD = in FindPropertyVisibleInPrimaryClass()
393 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId, in FindPropertyVisibleInPrimaryClass()
399 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, in FindPropertyVisibleInPrimaryClass()
1342 const ObjCPropertyDecl *
1362 [&](const ObjCContainerDecl *Container) -> const ObjCPropertyDecl * { in findPropertyDecl()
1426 if (const ObjCPropertyDecl *Prop = Override->findPropertyDecl(false)) in findPropertyDecl()
2018 const ObjCPropertyDecl *Property, ProtocolPropertySet &PS, in collectInheritedProtocolProperties()
2294 void ObjCPropertyDecl::anchor() {} in anchor()
2296 ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2304 return new (C, DC) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T, TSI, in Create()
2308 ObjCPropertyDecl *ObjCPropertyDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
2310 return new (C, ID) ObjCPropertyDecl(nullptr, SourceLocation(), nullptr, in CreateDeserialized()
2315 QualType ObjCPropertyDecl::getUsageType(QualType objectType) const { in getUsageType()
2320 bool ObjCPropertyDecl::isDirectProperty() const { in isDirectProperty()
2333 ObjCPropertyDecl *property, in Create()