Home | History | Annotate | Download | only in AST

Lines Matching refs:ImplD

362     if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
363 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
366 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
367 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
369 } else if (ObjCImplementationDecl *ImplD =
371 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
386 if (ObjCImplementationDecl *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) {
387 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
599 void ObjCInterfaceDecl::setImplementation(ObjCImplementationDecl *ImplD) {
600 getASTContext().setObjCImplementation(this, ImplD);
924 void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) {
925 getASTContext().setObjCImplementation(this, ImplD);
957 if (ObjCImplementationDecl *ImplD
960 Ctx.setObjCImplementation(IFace, ImplD);
962 } else if (ObjCCategoryImplDecl *ImplD =
965 Ctx.setObjCImplementation(CD, ImplD);