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()
126 I->ImplD = implD; in doTransform()
207 if (I->ImplD) in removeAssignForDefaultStrong()
236 if (I->ImplD) in rewriteAssign()
261 if (I->ImplD) { in maybeAddWeakOrUnsafeUnretainedAttr()
268 I->ImplD->getLocation()); in maybeAddWeakOrUnsafeUnretainedAttr()
DObjCMT.cpp84 const ObjCImplementationDecl *ImplD);
1711 const ObjCImplementationDecl *ImplD) { in inferDesignatedInitializers() argument
1713 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface(); in inferDesignatedInitializers()
1719 for (const auto *MD : ImplD->instance_methods()) { in inferDesignatedInitializers()
1935 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) { in HandleTranslationUnit() local
1937 canModify(ImplD)) in HandleTranslationUnit()
1938 inferDesignatedInitializers(Ctx, ImplD); in HandleTranslationUnit()
/external/clang/lib/AST/
DDeclObjC.cpp448 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local
449 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers()
819 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() local
820 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
821 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
824 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() local
825 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
826 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
828 } else if (ObjCImplementationDecl *ImplD = in getNextRedeclarationImpl() local
830 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl()
[all …]
DASTContext.cpp2057 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument
2058 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation()
2059 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation()
2063 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument
2064 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation()
2065 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.cpp5434 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in clang_getCanonicalCursor() local
5435 if (const ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in clang_getCanonicalCursor()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp2034 const ObjCImplementationDecl *ImplD, in DiagnoseMissingDesignatedInitOverrides() argument
2042 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides()
2057 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
DSemaDeclObjC.cpp4605 const ObjCImplementationDecl *ImplD) { in DiagnoseUnusedBackingIvarInAccessor() argument
4609 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor()
/external/clang/include/clang/AST/
DASTContext.h2305 ObjCImplementationDecl *ImplD);
2308 ObjCCategoryImplDecl *ImplD);
DDeclObjC.h1023 void setImplementation(ObjCImplementationDecl *ImplD);
1987 void setImplementation(ObjCCategoryImplDecl *ImplD);
/external/clang/lib/Serialization/
DASTReader.cpp6697 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument
6699 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer()
6701 for (auto *I : ImplD->methods()) in PassObjCImplDeclToConsumer()
6704 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer()
6733 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local
6734 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()
/external/clang/include/clang/Sema/
DSema.h3046 const ObjCImplementationDecl *ImplD);
3095 const ObjCImplementationDecl *ImplD,