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.cpp1613 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()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h988 ObjCPropertyDecl *SuperProperty,