Home | History | Annotate | Download | only in AST

Lines Matching refs:ImplD

643       if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
644 if (!ImplD->isInvalidDecl())
645 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
648 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
649 if (!ImplD->isInvalidDecl())
650 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
652 } else if (ObjCImplementationDecl *ImplD =
654 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
678 if (ObjCImplementationDecl *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) {
679 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
1119 void ObjCInterfaceDecl::setImplementation(ObjCImplementationDecl *ImplD) {
1120 getASTContext().setObjCImplementation(getDefinition(), ImplD);
1581 void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) {
1582 getASTContext().setObjCImplementation(this, ImplD);
1631 if (ObjCImplementationDecl *ImplD
1634 Ctx.setObjCImplementation(IFace, ImplD);
1636 } else if (ObjCCategoryImplDecl *ImplD =
1639 Ctx.setObjCImplementation(CD, ImplD);