Home
last modified time | relevance | path

Searched refs:SuperProperty (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1623 ObjCPropertyDecl *SuperProperty, in DiagnosePropertyMismatch() argument
1628 ObjCPropertyAttribute::Kind SAttr = SuperProperty->getPropertyAttributes(); in DiagnosePropertyMismatch()
1661 checkAtomicPropertyMismatch(SemaRef, SuperProperty, Property, false); in DiagnosePropertyMismatch()
1664 if (Property->getSetterName() != SuperProperty->getSetterName() && in DiagnosePropertyMismatch()
1665 !(SuperProperty->isReadOnly() && in DiagnosePropertyMismatch()
1666 isa<ObjCProtocolDecl>(SuperProperty->getDeclContext()))) { in DiagnosePropertyMismatch()
1669 Diag(SuperProperty->getLocation(), diag::note_property_declare); in DiagnosePropertyMismatch()
1671 if (Property->getGetterName() != SuperProperty->getGetterName()) { in DiagnosePropertyMismatch()
1674 Diag(SuperProperty->getLocation(), diag::note_property_declare); in DiagnosePropertyMismatch()
1678 Context.getCanonicalType(SuperProperty->getType()); in DiagnosePropertyMismatch()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h981 ObjCPropertyDecl *SuperProperty,