Lines Matching refs:Prop
238 if (auto *Prop = dyn_cast<ObjCPropertyDecl>(LookupResult)) { in getProperty() local
239 if (Prop->isInstanceProperty() == IsInstance) { in getProperty()
240 return Prop; in getProperty()
408 for (auto *Prop : properties()) { in collectPropertiesToImplement() local
409 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; in collectPropertiesToImplement()
410 PO.push_back(Prop); in collectPropertiesToImplement()
414 for (auto *Prop : ClassExt->properties()) { in collectPropertiesToImplement() local
415 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; in collectPropertiesToImplement()
416 PO.push_back(Prop); in collectPropertiesToImplement()
1426 if (const ObjCPropertyDecl *Prop = Override->findPropertyDecl(false)) in findPropertyDecl() local
1427 return Prop; in findPropertyDecl()
2004 for (auto *Prop : PDecl->properties()) { in collectPropertiesToImplement() local
2007 std::make_pair(Prop->getIdentifier(), Prop->isClassProperty()), in collectPropertiesToImplement()
2008 Prop)); in collectPropertiesToImplement()
2009 PO.push_back(Prop); in collectPropertiesToImplement()
2023 for (auto *Prop : PDecl->properties()) { in collectInheritedProtocolProperties() local
2024 if (Prop == Property) in collectInheritedProtocolProperties()
2026 if (Prop->getIdentifier() == Property->getIdentifier()) { in collectInheritedProtocolProperties()
2027 PO.push_back(Prop); in collectInheritedProtocolProperties()