Home | History | Annotate | Download | only in Sema

Lines Matching refs:IFace

1283   if (ObjCInterfaceDecl *iface = objType->getInterface()) {
1285 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance))
1290 if (ObjCMethodDecl *method = iface->lookupPrivateMethod(sel, isInstance))
1388 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
1406 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
1450 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
1458 Getter = IFace->lookupPrivateMethod(Sel);
1470 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
1479 Setter = IFace->lookupPrivateMethod(SetterSel);
1504 NULL, Validator, IFace, false, OPT)) {
1519 IFace->lookupInstanceVariable(Member, ClassDeclared)) {
1552 ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(receiverNamePtr,
1556 if (IFace == 0) {
1585 IFace = CurMethod->getClassInterface()->getSuperClass();
1589 if (IFace == 0) {
1597 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel);
1618 IFace->lookupClassMethod(SetterSel);
1629 Setter = IFace->getCategoryClassMethod(SetterSel);
1641 Context.getObjCInterfaceType(IFace)));
1647 receiverNameLoc, IFace));
1650 << &propertyName << Context.getObjCInterfaceType(IFace));