Home | History | Annotate | Download | only in Sema

Lines Matching refs:MethList

5124       for (ObjCMethodList *MethList = &M->second.second;
5125 MethList && MethList->Method;
5126 MethList = MethList->Next) {
5127 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents,
5131 Result R(MethList->Method, 0);
5295 for (ObjCMethodList *MethList = &M->second.first;
5296 MethList && MethList->Method;
5297 MethList = MethList->Next) {
5298 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents,
5302 if (!Selectors.insert(MethList->Method->getSelector()))
5305 Result R(MethList->Method, 0);
6704 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first :
6706 MethList && MethList->Method;
6707 MethList = MethList->Next) {
6708 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents,
6714 if (NumSelIdents && NumSelIdents <= MethList->Method->param_size()) {
6715 ParmVarDecl *Param = MethList->Method->param_begin()[NumSelIdents-1];
6727 Result R(MethList->Method, 0);