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) {}
108 ObjCPropertyImplDecl *implD = *I;
109 if (implD->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
111 ObjCPropertyDecl *propD = implD->getPropertyDecl();
114 ObjCIvarDecl *ivarD = implD->getPropertyIvarDecl();
126 I->ImplD = implD;
207 if (I->ImplD)
236 if (I->ImplD)
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 448 if (const auto *ImplD = D->getImplementation()) {
449 for (const auto *MD : ImplD->instance_methods()) {
819 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
820 if (!ImplD->isInvalidDecl())
821 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
824 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
825 if (!ImplD->isInvalidDecl())
826 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
828 } else if (ObjCImplementationDecl *ImplD =
830 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()
    [all...]

Completed in 43 milliseconds