Lines Matching refs:Prop
239 if (auto *Prop = dyn_cast<ObjCPropertyDecl>(LookupResult)) { in getProperty() local
240 if (Prop->isInstanceProperty() == IsInstance) { in getProperty()
241 return Prop; in getProperty()
406 for (auto *Prop : properties()) { in collectPropertiesToImplement() local
407 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; in collectPropertiesToImplement()
411 for (auto *Prop : ClassExt->properties()) { in collectPropertiesToImplement() local
412 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()
2044 for (auto *Prop : PDecl->properties()) { in collectPropertiesToImplement() local
2047 std::make_pair(Prop->getIdentifier(), Prop->isClassProperty()), in collectPropertiesToImplement()
2048 Prop)); in collectPropertiesToImplement()
2062 for (auto *Prop : PDecl->properties()) { in collectInheritedProtocolProperties() local
2063 if (Prop == Property) in collectInheritedProtocolProperties()
2065 if (Prop->getIdentifier() == Property->getIdentifier()) { in collectInheritedProtocolProperties()
2066 PO.push_back(Prop); in collectInheritedProtocolProperties()