Home | History | Annotate | Download | only in Sema

Lines Matching refs:CurrentClass

126     ObjCInterfaceDecl *CurrentClass 
128 if (!CurrentClass) {
131 CurrentClass = Cat->getClassInterface();
133 CurrentClass = Impl->getClassInterface();
136 CurrentClass = CatImpl->getClassInterface();
139 if (CurrentClass) {
142 << Context.getObjCInterfaceType(CurrentClass)
2593 ObjCInterfaceDecl *CurrentClass) {
2606 if (CurrentClass) {
2610 if (declaresSameEntity(CurrentClass, ResultClass))
2614 if (ResultClass->isSuperClassOf(CurrentClass))
2781 ObjCInterfaceDecl *CurrentClass,
2796 CurrentClass != overridden->getClassInterface() ||
2816 if (CurrentClass && overridden->getDeclContext() != CurrentClass &&
3015 ObjCInterfaceDecl *CurrentClass = dyn_cast<ObjCInterfaceDecl>(ClassDecl);
3016 if (!CurrentClass) {
3018 CurrentClass = Cat->getClassInterface();
3020 CurrentClass = Impl->getClassInterface();
3023 CurrentClass = CatImpl->getClassInterface();
3027 = CheckRelatedResultTypeCompatibility(*this, ObjCMethod, CurrentClass);
3029 CheckObjCMethodOverrides(ObjCMethod, CurrentClass, RTC);