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

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCPropertyChecker.cpp56 const ObjCImplDecl *ImplD = nullptr; local
59 ImplD = IntD->getImplementation();
61 ImplD = CatD->getClassInterface()->getImplementation();
64 if (!ImplD || ImplD->HasUserDeclaredSetterMethod(D))
H A DIvarInvalidationChecker.cpp359 visit(const ObjCImplementationDecl *ImplD) const {
366 const ObjCInterfaceDecl *InterfaceD = ImplD->getClassInterface();
432 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(),
484 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(),
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransProperties.cpp61 ObjCPropertyImplDecl *ImplD; member in struct:__anon286::PropertiesRewriter::PropData
64 : PropD(propD), IvarD(nullptr), ImplD(nullptr) {}
125 I->ImplD = implD;
206 if (I->ImplD)
235 if (I->ImplD)
260 if (I->ImplD) {
267 I->ImplD->getLocation());
H A DObjCMT.cpp85 const ObjCImplementationDecl *ImplD);
1711 const ObjCImplementationDecl *ImplD) {
1713 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface();
1719 for (const auto *MD : ImplD->instance_methods()) {
1942 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) {
1944 canModify(ImplD))
1945 inferDesignatedInitializers(Ctx, ImplD);
1709 inferDesignatedInitializers( ASTContext &Ctx, const ObjCImplementationDecl *ImplD) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.cpp174 auto &ImplD = local
187 {&ImplD, JITDylibLookupFlags::MatchAllSymbols});
188 ImplD.setSearchOrder(std::move(NewSearchOrder), false);
190 PerDylibResources PDR(ImplD, BuildIndirectStubsManager());
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp497 if (const auto *ImplD = D->getImplementation()) {
498 for (const auto *MD : ImplD->instance_methods()) {
921 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
922 if (!ImplD->isInvalidDecl())
923 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
926 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
927 if (!ImplD->isInvalidDecl())
928 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
930 } else if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) {
931 if (ObjCInterfaceDecl *IFD = ImplD
1587 setImplementation(ObjCImplementationDecl *ImplD) argument
1588 getASTContext().setObjCImplementation(getDefinition(), ImplD); local
2050 setImplementation(ObjCCategoryImplDecl *ImplD) argument
[all...]
H A DASTContext.cpp2742 ObjCImplementationDecl *ImplD) {
2743 assert(IFaceD && ImplD && "Passed null params");
2744 ObjCImpls[IFaceD] = ImplD;
2749 ObjCCategoryImplDecl *ImplD) {
2750 assert(CatD && ImplD && "Passed null params");
2751 ObjCImpls[CatD] = ImplD;
2741 setObjCImplementation(ObjCInterfaceDecl *IFaceD, ObjCImplementationDecl *ImplD) argument
2748 setObjCImplementation(ObjCCategoryDecl *CatD, ObjCCategoryImplDecl *ImplD) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h104 PerDylibResources(JITDylib &ImplD, argument
106 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {}
107 JITDylib &getImplDylib() { return ImplD; }
111 JITDylib &ImplD; member in struct:llvm::orc::CompileOnDemandLayer::PerDylibResources
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1364 void setImplementation(ObjCImplementationDecl *ImplD);
2354 void setImplementation(ObjCCategoryImplDecl *ImplD);
H A DASTContext.h2727 ObjCImplementationDecl *ImplD);
2731 ObjCCategoryImplDecl *ImplD);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2332 const ObjCImplementationDecl *ImplD,
2340 for (const auto *I : ImplD->instance_methods())
2364 Diag(ImplD->getLocation(),
2331 DiagnoseMissingDesignatedInitOverrides( const ObjCImplementationDecl *ImplD, const ObjCInterfaceDecl *IFD) argument
H A DSemaDeclObjC.cpp5222 const ObjCImplementationDecl *ImplD) {
5226 for (const auto *CurMethod : ImplD->instance_methods()) {
5221 DiagnoseUnusedBackingIvarInAccessor(Scope *S, const ObjCImplementationDecl *ImplD) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp7569 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
7571 assert(ImplD && Consumer);
7573 for (auto *I : ImplD->methods())
7576 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD));
7580 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
7581 PassObjCImplDeclToConsumer(ImplD, Consumer);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h3902 const ObjCImplementationDecl *ImplD);
3955 const ObjCImplementationDecl *ImplD,

Completed in 296 milliseconds