Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h77 PerDylibResources(JITDylib &ImplD, in PerDylibResources()
79 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {} in PerDylibResources()
80 JITDylib &getImplDylib() { return ImplD; } in getImplDylib()
84 JITDylib &ImplD;
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.cpp83 auto &ImplD = in getPerDylibResources() local
96 {&ImplD, JITDylibLookupFlags::MatchAllSymbols}); in getPerDylibResources()
97 ImplD.setLinkOrder(NewLinkOrder, false); in getPerDylibResources()
100 PerDylibResources PDR(ImplD, BuildIndirectStubsManager()); in getPerDylibResources()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp504 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local
505 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers()
972 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() local
973 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
974 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
977 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() local
978 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
979 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
981 } else if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { in getNextRedeclarationImpl() local
982 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl()
[all …]
H A DASTContext.cpp3129 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument
3130 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation()
3131 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation()
3136 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument
3137 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation()
3138 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIvarInvalidationChecker.cpp356 visit(const ObjCImplementationDecl *ImplD) const { in visit()
363 const ObjCInterfaceDecl *InterfaceD = ImplD->getClassInterface(); in visit()
422 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
471 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h511 const ObjCImplementationDecl *ImplD);
1014 DiagnoseMissingDesignatedInitOverrides(const ObjCImplementationDecl *ImplD,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2308 const ObjCImplementationDecl *ImplD, const ObjCInterfaceDecl *IFD) { in DiagnoseMissingDesignatedInitOverrides() argument
2315 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides()
2339 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
H A DSemaDeclObjC.cpp2138 if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(ObjCImpDecl)) in ActOnFinishObjCImplementation() local
2139 if (!ImplD->ivar_empty()) in ActOnFinishObjCImplementation()
2140 getASTContext().ResetObjCLayout(ImplD->getClassInterface()); in ActOnFinishObjCImplementation()
5361 Scope *S, const ObjCImplementationDecl *ImplD) { in DiagnoseUnusedBackingIvarInAccessor() argument
5365 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1339 void setImplementation(ObjCImplementationDecl *ImplD);
2384 void setImplementation(ObjCCategoryImplDecl *ImplD);
H A DASTContext.h3313 ObjCImplementationDecl *ImplD);
3317 ObjCCategoryImplDecl *ImplD);
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp8671 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument
8673 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer()
8675 for (auto *I : ImplD->methods()) in PassObjCImplDeclToConsumer()
8678 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer()
8682 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local
8683 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()