Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCPropertyChecker.cpp56 const ObjCImplDecl *ImplD = nullptr; in checkCopyMutable() local
59 ImplD = IntD->getImplementation(); in checkCopyMutable()
61 ImplD = CatD->getClassInterface()->getImplementation(); in checkCopyMutable()
64 if (!ImplD || ImplD->HasUserDeclaredSetterMethod(D)) in checkCopyMutable()
H A DIvarInvalidationChecker.cpp357 visit(const ObjCImplementationDecl *ImplD) const { in visit()
364 const ObjCInterfaceDecl *InterfaceD = ImplD->getClassInterface(); in visit()
423 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
472 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h98 PerDylibResources(JITDylib &ImplD, in PerDylibResources()
100 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {} in PerDylibResources()
101 JITDylib &getImplDylib() { return ImplD; } in getImplDylib()
105 JITDylib &ImplD;
/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransProperties.cpp61 ObjCPropertyImplDecl *ImplD; member
64 : PropD(propD), IvarD(nullptr), ImplD(nullptr) {} in PropData()
124 I->ImplD = implD; in doTransform()
205 if (I->ImplD) in removeAssignForDefaultStrong()
234 if (I->ImplD) in rewriteAssign()
259 if (I->ImplD) { in maybeAddWeakOrUnsafeUnretainedAttr()
266 I->ImplD->getLocation()); in maybeAddWeakOrUnsafeUnretainedAttr()
H A DObjCMT.cpp85 const ObjCImplementationDecl *ImplD);
1694 const ObjCImplementationDecl *ImplD) { in inferDesignatedInitializers() argument
1696 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface(); in inferDesignatedInitializers()
1702 for (const auto *MD : ImplD->instance_methods()) { in inferDesignatedInitializers()
1925 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) { in HandleTranslationUnit() local
1927 canModify(ImplD)) in HandleTranslationUnit()
1928 inferDesignatedInitializers(Ctx, ImplD); in HandleTranslationUnit()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp508 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local
509 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers()
976 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
981 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
985 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl()
1016 if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { in getCanonicalDecl() local
1017 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) { in getCanonicalDecl()
1649 getASTContext().setObjCImplementation(getDefinition(), ImplD); in setImplementation()
2175 getASTContext().setObjCImplementation(this, ImplD); in setImplementation()
2233 Ctx.setObjCImplementation(IFace, ImplD); in setClassInterface()
[all …]
H A DASTContext.cpp2888 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument
2889 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation()
2890 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation()
2895 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument
2896 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation()
2897 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.cpp190 auto &ImplD = in getPerDylibResources() local
203 {&ImplD, JITDylibLookupFlags::MatchAllSymbols}); in getPerDylibResources()
204 ImplD.setLinkOrder(NewLinkOrder, false); in getPerDylibResources()
207 PerDylibResources PDR(ImplD, BuildIndirectStubsManager()); in getPerDylibResources()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2316 const ObjCImplementationDecl *ImplD, in DiagnoseMissingDesignatedInitOverrides() argument
2324 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides()
2348 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
H A DSemaDeclObjC.cpp5340 const ObjCImplementationDecl *ImplD) { in DiagnoseUnusedBackingIvarInAccessor() argument
5344 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1339 void setImplementation(ObjCImplementationDecl *ImplD);
2383 void setImplementation(ObjCCategoryImplDecl *ImplD);
H A DASTContext.h3010 ObjCImplementationDecl *ImplD);
3014 ObjCCategoryImplDecl *ImplD);
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp8016 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument
8018 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer()
8020 for (auto *I : ImplD->methods()) in PassObjCImplDeclToConsumer()
8023 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer()
8027 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local
8028 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4913 const ObjCImplementationDecl *ImplD);
4966 const ObjCImplementationDecl *ImplD,