Home
last modified time | relevance | path

Searched refs:ImplD (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/ARCMigrate/
DTransProperties.cpp62 ObjCPropertyImplDecl *ImplD; member
65 : PropD(propD), IvarD(nullptr), ImplD(nullptr) {} in PropData()
122 I->ImplD = implD; in doTransform()
225 if (I->ImplD) in removeAssignForDefaultStrong()
254 if (I->ImplD) in rewriteAssign()
279 if (I->ImplD) { in maybeAddWeakOrUnsafeUnretainedAttr()
286 I->ImplD->getLocation()); in maybeAddWeakOrUnsafeUnretainedAttr()
DObjCMT.cpp83 const ObjCImplementationDecl *ImplD);
1584 const ObjCImplementationDecl *ImplD) { in inferDesignatedInitializers() argument
1586 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface(); in inferDesignatedInitializers()
1592 for (const auto *MD : ImplD->instance_methods()) { in inferDesignatedInitializers()
1791 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) { in HandleTranslationUnit() local
1793 canModify(ImplD)) in HandleTranslationUnit()
1794 inferDesignatedInitializers(Ctx, ImplD); in HandleTranslationUnit()
/external/clang/lib/AST/
DDeclObjC.cpp367 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local
368 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers()
736 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() local
737 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
738 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
741 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() local
742 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
743 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
745 } else if (ObjCImplementationDecl *ImplD = in getNextRedeclarationImpl() local
747 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl()
[all …]
DASTContext.cpp1920 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument
1921 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation()
1922 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation()
1926 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument
1927 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation()
1928 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
/external/clang/lib/StaticAnalyzer/Checkers/
DIvarInvalidationChecker.cpp364 visit(const ObjCImplementationDecl *ImplD) const { in visit()
371 const ObjCInterfaceDecl *InterfaceD = ImplD->getClassInterface(); in visit()
435 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
487 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
/external/clang/tools/libclang/
DCIndexHigh.cpp85 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) { in getCanonical() local
86 if (ImplD->getClassInterface()) in getCanonical()
87 return getCanonical(ImplD->getClassInterface()); in getCanonical()
DIndexingContext.cpp818 ImplD = dyn_cast<ObjCImplementationDecl>(D)) { in getEntityDecl() local
819 return getEntityDecl(ImplD->getClassInterface()); in getEntityDecl()
DCIndex.cpp4918 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in clang_getCanonicalCursor() local
4919 if (const ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in clang_getCanonicalCursor()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp1859 const ObjCImplementationDecl *ImplD, in DiagnoseMissingDesignatedInitOverrides() argument
1867 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides()
1877 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
DSemaDeclObjC.cpp3519 const ObjCImplementationDecl *ImplD) { in DiagnoseUnusedBackingIvarInAccessor() argument
3523 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor()
/external/clang/include/clang/AST/
DASTContext.h2107 ObjCImplementationDecl *ImplD);
2110 ObjCCategoryImplDecl *ImplD);
DDeclObjC.h814 void setImplementation(ObjCImplementationDecl *ImplD);
1754 void setImplementation(ObjCCategoryImplDecl *ImplD);
/external/clang/lib/Serialization/
DASTReader.cpp6570 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument
6572 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer()
6574 for (auto *I : ImplD->methods()) in PassObjCImplDeclToConsumer()
6577 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer()
6600 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local
6601 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()
/external/clang/include/clang/Sema/
DSema.h2774 const ObjCImplementationDecl *ImplD);
2824 const ObjCImplementationDecl *ImplD,