Home | History | Annotate | Download | only in Sema

Lines Matching defs:IFace

1189     const ObjCContainerDecl *iface;
1192 iface = catImpl->getCategoryDecl();
1194 iface = impl->getClassInterface();
1198 iface->getMethod(MD->getSelector(), MD->isInstanceMethod());
1463 if (ObjCInterfaceDecl *iface = objType->getInterface()) {
1465 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance))
1470 if (ObjCMethodDecl *method = iface->lookupPrivateMethod(sel, isInstance))
1565 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
1583 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
1619 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
1627 Getter = IFace->lookupPrivateMethod(Sel);
1639 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
1648 Setter = IFace->lookupPrivateMethod(SetterSel);
1670 nullptr, nullptr, Validator, CTK_ErrorRecovery, IFace, false, OPT)) {
1680 IFace->lookupInstanceVariable(Member, ClassDeclared)) {
1713 ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(receiverNamePtr,
1717 if (!IFace) {
1746 IFace = CurMethod->getClassInterface()->getSuperClass();
1750 if (!IFace) {
1759 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel);
1763 Getter = IFace->lookupPrivateClassMethod(Sel);
1778 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
1782 Setter = IFace->lookupPrivateClassMethod(SetterSel);
1786 Setter = IFace->getCategoryClassMethod(SetterSel);
1796 Context.getObjCInterfaceType(IFace));
1800 propertyNameLoc, receiverNameLoc, IFace);
1803 << &propertyName << Context.getObjCInterfaceType(IFace));