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()
407 for (auto *Prop : properties()) { in collectPropertiesToImplement() local
408 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; in collectPropertiesToImplement()
412 for (auto *Prop : ClassExt->properties()) { in collectPropertiesToImplement() local
413 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; in collectPropertiesToImplement()
1461 if (const ObjCPropertyDecl *Prop = Override->findPropertyDecl(false)) in findPropertyDecl() local
1462 return Prop; in findPropertyDecl()
2050 for (auto *Prop : PDecl->properties()) { in collectPropertiesToImplement() local
2053 std::make_pair(Prop->getIdentifier(), Prop->isClassProperty()), in collectPropertiesToImplement()
2054 Prop)); in collectPropertiesToImplement()
2068 for (auto *Prop : PDecl->properties()) { in collectInheritedProtocolProperties() local
2069 if (Prop == Property) in collectInheritedProtocolProperties()
2071 if (Prop->getIdentifier() == Property->getIdentifier()) { in collectInheritedProtocolProperties()
2072 PO.push_back(Prop); in collectInheritedProtocolProperties()