Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaObjCProperty.cpp1637 ObjCPropertyDecl *SuperProperty, in DiagnosePropertyMismatch() argument
1641 ObjCPropertyAttribute::Kind SAttr = SuperProperty->getPropertyAttributes(); in DiagnosePropertyMismatch()
1674 checkAtomicPropertyMismatch(*this, SuperProperty, Property, false); in DiagnosePropertyMismatch()
1677 if (Property->getSetterName() != SuperProperty->getSetterName() && in DiagnosePropertyMismatch()
1678 !(SuperProperty->isReadOnly() && in DiagnosePropertyMismatch()
1679 isa<ObjCProtocolDecl>(SuperProperty->getDeclContext()))) { in DiagnosePropertyMismatch()
1682 Diag(SuperProperty->getLocation(), diag::note_property_declare); in DiagnosePropertyMismatch()
1684 if (Property->getGetterName() != SuperProperty->getGetterName()) { in DiagnosePropertyMismatch()
1687 Diag(SuperProperty->getLocation(), diag::note_property_declare); in DiagnosePropertyMismatch()
1691 Context.getCanonicalType(SuperProperty->getType()); in DiagnosePropertyMismatch()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h9629 ObjCPropertyDecl *SuperProperty,