Home | History | Annotate | Download | only in Sema

Lines Matching refs:CP

1012         ObjCCategoryDecl::prop_iterator CP, CE;
1014 for (CP = CatDecl->prop_begin(), CE = CatDecl->prop_end(); CP!=CE; ++CP)
1015 if ((*CP)->getIdentifier() == Pr->getIdentifier())
1017 if (CP != CE)
1019 DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());
1026 ObjCInterfaceDecl::prop_iterator CP, CE;
1028 for (CP = IDecl->prop_begin(), CE = IDecl->prop_end(); CP != CE; ++CP)
1029 if ((*CP)->getIdentifier() == Pr->getIdentifier())
1031 if (CP != CE)
1033 DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());