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;
230 if (I->ImplD)
259 if (I->ImplD)
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 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()
    [all...]

Completed in 30 milliseconds