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

References

tools/clang/lib/AST/DeclObjC.cpp
  700     if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
  701       return MethodDecl;
  705       if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
  706         if (C != Cat || !MethodDecl->isImplicit())
  707           return MethodDecl;
  711       if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
  712         return MethodDecl;
  721           if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance)))
  722             if (C != Cat || !MethodDecl->isImplicit())
  723               return MethodDecl;