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;
65 : PropD(propD), IvarD(nullptr), ImplD(nullptr) {}
104 ObjCPropertyImplDecl *implD = *I;
105 if (implD->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
107 ObjCPropertyDecl *propD = implD->getPropertyDecl();
110 ObjCIvarDecl *ivarD = implD->getPropertyIvarDecl();
122 I->ImplD = implD;
225 if (I->ImplD)
254 if (I->ImplD)
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 367 if (const auto *ImplD = D->getImplementation()) {
368 for (const auto *MD : ImplD->instance_methods()) {
736 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
737 if (!ImplD->isInvalidDecl())
738 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
741 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
742 if (!ImplD->isInvalidDecl())
743 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
745 } else if (ObjCImplementationDecl *ImplD =
747 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()
    [all...]

Completed in 193 milliseconds