HomeSort by relevance Sort by last modified time
    Searched defs:ImplD (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/ARCMigrate/
TransProperties.cpp 62 ObjCPropertyImplDecl *ImplD;
64 PropData(ObjCPropertyDecl *propD) : PropD(propD), IvarD(0), ImplD(0) { }
105 ObjCPropertyImplDecl *implD = *I;
106 if (implD->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
108 ObjCPropertyDecl *propD = implD->getPropertyDecl();
111 ObjCIvarDecl *ivarD = implD->getPropertyIvarDecl();
123 I->ImplD = implD;
228 if (I->ImplD)
230 I->ImplD->getLocation())
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 475 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
476 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
479 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
480 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
482 } else if (ObjCImplementationDecl *ImplD =
484 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
505 if (ObjCImplementationDecl *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) {
506 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
752 void ObjCInterfaceDecl::setImplementation(ObjCImplementationDecl *ImplD) {
753 getASTContext().setObjCImplementation(getDefinition(), ImplD);
    [all...]

Completed in 19 milliseconds