Home | History | Annotate | Download | only in Sema

Lines Matching defs:IFace

1284   if (ObjCInterfaceDecl *iface = objType->getInterface()) {
1286 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance))
1292 if (ObjCMethodDecl *method = LookupPrivateInstanceMethod(sel, iface))
1295 if (ObjCMethodDecl *method = LookupPrivateClassMethod(sel, iface))
1336 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
1353 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
1398 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
1406 Getter = IFace->lookupPrivateMethod(Sel);
1410 Getter = IFace->getCategoryInstanceMethod(Sel);
1421 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
1430 Setter = IFace->lookupPrivateMethod(SetterSel);
1434 Setter = IFace->getCategoryInstanceMethod(SetterSel);
1458 NULL, Validator, IFace, false, OPT)) {
1473 IFace->lookupInstanceVariable(Member, ClassDeclared)) {
1506 ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(receiverNamePtr,
1510 if (IFace == 0) {
1532 IFace = CurMethod->getClassInterface()->getSuperClass();
1536 if (IFace == 0) {
1544 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel);
1565 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
1576 Setter = IFace->getCategoryClassMethod(SetterSel);
1588 Context.getObjCInterfaceType(IFace)));
1594 receiverNameLoc, IFace));
1597 << &propertyName << Context.getObjCInterfaceType(IFace));