Lines Matching refs:SuperProperty
1613 ObjCPropertyDecl *SuperProperty, in DiagnosePropertyMismatch() argument
1618 ObjCPropertyAttribute::Kind SAttr = SuperProperty->getPropertyAttributes(); in DiagnosePropertyMismatch()
1651 checkAtomicPropertyMismatch(SemaRef, SuperProperty, Property, false); in DiagnosePropertyMismatch()
1654 if (Property->getSetterName() != SuperProperty->getSetterName() && in DiagnosePropertyMismatch()
1655 !(SuperProperty->isReadOnly() && in DiagnosePropertyMismatch()
1656 isa<ObjCProtocolDecl>(SuperProperty->getDeclContext()))) { in DiagnosePropertyMismatch()
1659 Diag(SuperProperty->getLocation(), diag::note_property_declare); in DiagnosePropertyMismatch()
1661 if (Property->getGetterName() != SuperProperty->getGetterName()) { in DiagnosePropertyMismatch()
1664 Diag(SuperProperty->getLocation(), diag::note_property_declare); in DiagnosePropertyMismatch()
1668 Context.getCanonicalType(SuperProperty->getType()); in DiagnosePropertyMismatch()
1681 << Property->getType() << SuperProperty->getType() << inheritedName; in DiagnosePropertyMismatch()
1682 Diag(SuperProperty->getLocation(), diag::note_property_declare); in DiagnosePropertyMismatch()