Home | History | Annotate | Download | only in Sema

Lines Matching defs:CurMethod

3241   if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3242 if (CurMethod->isInstance())
3244 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
5149 ObjCMethodDecl *CurMethod = S.getCurMethodDecl();
5150 if (!CurMethod)
5153 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5161 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5162 CurMethod->isInstanceMethod());
5170 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
5171 CurMethod->isInstanceMethod())))
5181 if (CurMethod->param_size() != SuperMethod->param_size() ||
5182 CurMethod->isVariadic() != SuperMethod->isVariadic())
5185 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
5186 CurPEnd = CurMethod->param_end(),
5213 Selector Sel = CurMethod->getSelector();
5222 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();
5293 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5295 CDecl = CurMethod->getClassInterface();
5304 if (CurMethod->isInstanceMethod()) {
5421 if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl())
5422 Results.setPreferredSelector(CurMethod->getSelector());
5559 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
5560 Results.setPreferredSelector(CurMethod->getSelector());
5570 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5571 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())