Home | History | Annotate | Download | only in Sema

Lines Matching refs:CurMethod

3147   if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3148 if (CurMethod->isInstance())
3150 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
5003 ObjCMethodDecl *CurMethod = S.getCurMethodDecl();
5004 if (!CurMethod)
5007 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5015 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5016 CurMethod->isInstanceMethod());
5022 if ((SuperMethod = Category->getMethod(CurMethod->getSelector(),
5023 CurMethod->isInstanceMethod())))
5032 if (CurMethod->param_size() != SuperMethod->param_size() ||
5033 CurMethod->isVariadic() != SuperMethod->isVariadic())
5036 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
5037 CurPEnd = CurMethod->param_end(),
5064 Selector Sel = CurMethod->getSelector();
5073 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();
5144 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5146 CDecl = CurMethod->getClassInterface();
5155 if (CurMethod->isInstanceMethod()) {
5272 if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl())
5273 Results.setPreferredSelector(CurMethod->getSelector());
5410 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
5411 Results.setPreferredSelector(CurMethod->getSelector());
5421 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5422 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())