Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h98 PerDylibResources(JITDylib &ImplD,
100 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {} in PerDylibResources()
101 JITDylib &getImplDylib() { return ImplD; } in PerDylibResources()
105 JITDylib &ImplD;
/freebsd/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);
1695 const ObjCImplementationDecl *ImplD) { in inferDesignatedInitializers() argument
1697 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface(); in inferDesignatedInitializers()
1703 for (const auto *MD : ImplD->instance_methods()) { in inferDesignatedInitializers()
1926 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) { in HandleTranslationUnit() local
1928 canModify(ImplD)) in HandleTranslationUnit()
1929 inferDesignatedInitializers(Ctx, ImplD); in HandleTranslationUnit()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp507 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local
508 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers()
975 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() local
976 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
977 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
980 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() local
981 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
982 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
984 } else if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { in getNextRedeclarationImpl() local
985 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl()
[all …]
H A DASTContext.cpp2943 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument
2944 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation()
2945 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation()
2950 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument
2951 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation()
2952 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
/freebsd/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/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h519 const ObjCImplementationDecl *ImplD);
1021 DiagnoseMissingDesignatedInitOverrides(const ObjCImplementationDecl *ImplD,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2299 const ObjCImplementationDecl *ImplD, const ObjCInterfaceDecl *IFD) { in DiagnoseMissingDesignatedInitOverrides() argument
2306 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides()
2330 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
H A DSemaDeclObjC.cpp5358 Scope *S, const ObjCImplementationDecl *ImplD) { in DiagnoseUnusedBackingIvarInAccessor() argument
5362 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1341 void setImplementation(ObjCImplementationDecl *ImplD);
2384 void setImplementation(ObjCCategoryImplDecl *ImplD);
H A DASTContext.h3103 ObjCImplementationDecl *ImplD);
3107 ObjCCategoryImplDecl *ImplD);
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp8103 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument
8105 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer()
8107 for (auto *I : ImplD->methods()) in PassObjCImplDeclToConsumer()
8110 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer()
8114 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local
8115 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()