Lines Matching refs:IMPDecl
1574 void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl* IMPDecl, in DefaultSynthesizeProperties() argument
1593 !IMPDecl->getInstanceMethod(Prop->getSetterName())) { in DefaultSynthesizeProperties()
1605 IMPDecl->FindPropertyImplIvarDecl(Prop->getIdentifier())) { in DefaultSynthesizeProperties()
1615 if (IMPDecl->FindPropertyImplDecl(Prop->getIdentifier())) in DefaultSynthesizeProperties()
1617 if (IMPDecl->getInstanceMethod(Prop->getGetterName())) { in DefaultSynthesizeProperties()
1620 if (IMPDecl->getInstanceMethod(Prop->getSetterName())) in DefaultSynthesizeProperties()
1625 Diag(IMPDecl->getLocation(), in DefaultSynthesizeProperties()
1643 Diag(IMPDecl->getLocation(), diag::note_while_in_implementation); in DefaultSynthesizeProperties()
1659 void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl, in DiagnoseUnimplementedProperties() argument
1686 I = IMPDecl->propimpl_begin(), in DiagnoseUnimplementedProperties()
1687 EI = IMPDecl->propimpl_end(); I != EI; ++I) in DiagnoseUnimplementedProperties()
1700 Diag(IMPDecl->getLocation(), in DiagnoseUnimplementedProperties()
1715 Diag(IMPDecl->getLocation(), in DiagnoseUnimplementedProperties()
1731 Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl, in AtomicPropertySetterGetterRules() argument
1749 GetterMethod = IMPDecl->getInstanceMethod(Property->getGetterName()); in AtomicPropertySetterGetterRules()
1750 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()
1771 = IMPDecl->FindPropertyImplDecl(Property->getIdentifier())) { in AtomicPropertySetterGetterRules()
1775 GetterMethod = IMPDecl->getInstanceMethod(Property->getGetterName()); in AtomicPropertySetterGetterRules()
1776 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()