reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaCodeComplete.cpp
 6500   if (!CurMethod)
 6503   ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
 6511     SuperMethod = Class->getMethod(CurMethod->getSelector(),
 6512                                    CurMethod->isInstanceMethod());
 6517         if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
 6518                                           CurMethod->isInstanceMethod())))
 6528   if (CurMethod->param_size() != SuperMethod->param_size() ||
 6529       CurMethod->isVariadic() != SuperMethod->isVariadic())
 6532   for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
 6533                                       CurPEnd = CurMethod->param_end(),
 6560   Selector Sel = CurMethod->getSelector();
 6569     ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();