Home
last modified time | relevance | path

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

12

/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
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()
DIvarInvalidationChecker.cpp359 visit(const ObjCImplementationDecl *ImplD) const { in visit()
366 const ObjCInterfaceDecl *InterfaceD = ImplD->getClassInterface(); in visit()
432 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
484 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DCompileOnDemandLayer.h103 PerDylibResources(JITDylib &ImplD, in PerDylibResources()
105 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {} in PerDylibResources()
106 JITDylib &getImplDylib() { return ImplD; } in getImplDylib()
110 JITDylib &ImplD;
/external/llvm-project/clang/lib/ARCMigrate/
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()
DObjCMT.cpp85 const ObjCImplementationDecl *ImplD);
1703 const ObjCImplementationDecl *ImplD) { in inferDesignatedInitializers() argument
1705 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface(); in inferDesignatedInitializers()
1711 for (const auto *MD : ImplD->instance_methods()) { in inferDesignatedInitializers()
1934 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) { in HandleTranslationUnit() local
1936 canModify(ImplD)) in HandleTranslationUnit()
1937 inferDesignatedInitializers(Ctx, ImplD); in HandleTranslationUnit()
/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);
1709 const ObjCImplementationDecl *ImplD) { in inferDesignatedInitializers() argument
1711 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface(); in inferDesignatedInitializers()
1717 for (const auto *MD : ImplD->instance_methods()) { in inferDesignatedInitializers()
1933 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) { in HandleTranslationUnit() local
1935 canModify(ImplD)) in HandleTranslationUnit()
1936 inferDesignatedInitializers(Ctx, ImplD); in HandleTranslationUnit()
/external/clang/lib/AST/
DDeclObjC.cpp476 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local
477 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers()
851 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() local
852 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
853 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
856 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() local
857 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
858 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
860 } else if (ObjCImplementationDecl *ImplD = in getNextRedeclarationImpl() local
862 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl()
[all …]
DASTContext.cpp2055 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument
2056 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation()
2057 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation()
2061 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument
2062 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation()
2063 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
/external/clang/lib/Index/
DIndexDecl.cpp330 auto *ImplD = cast<ObjCImplDecl>(D->getDeclContext()); in VisitObjCPropertyImplDecl() local
333 !hasUserDefined(MD, ImplD)) in VisitObjCPropertyImplDecl()
334 IndexCtx.handleDecl(MD, D->getLocation(), SymbolRoleSet(), {}, ImplD); in VisitObjCPropertyImplDecl()
338 !hasUserDefined(MD, ImplD)) in VisitObjCPropertyImplDecl()
339 IndexCtx.handleDecl(MD, D->getLocation(), SymbolRoleSet(), {}, ImplD); in VisitObjCPropertyImplDecl()
/external/llvm-project/clang/lib/AST/
DDeclObjC.cpp499 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local
500 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers()
923 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() local
924 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
925 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
928 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() local
929 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
930 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
932 } else if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { in getNextRedeclarationImpl() local
933 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DCompileOnDemandLayer.cpp174 auto &ImplD = in getPerDylibResources() local
187 {&ImplD, JITDylibLookupFlags::MatchAllSymbols}); in getPerDylibResources()
188 ImplD.setSearchOrder(std::move(NewSearchOrder), false); in getPerDylibResources()
190 PerDylibResources PDR(ImplD, BuildIndirectStubsManager()); in getPerDylibResources()
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/
DCompileOnDemandLayer.cpp189 auto &ImplD = in getPerDylibResources() local
202 {&ImplD, JITDylibLookupFlags::MatchAllSymbols}); in getPerDylibResources()
203 ImplD.setLinkOrder(NewLinkOrder, false); in getPerDylibResources()
206 PerDylibResources PDR(ImplD, BuildIndirectStubsManager()); in getPerDylibResources()
/external/clang/lib/StaticAnalyzer/Checkers/
DIvarInvalidationChecker.cpp360 visit(const ObjCImplementationDecl *ImplD) const { in visit()
367 const ObjCInterfaceDecl *InterfaceD = ImplD->getClassInterface(); in visit()
433 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
485 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DCompileOnDemandLayer.h104 PerDylibResources(JITDylib &ImplD, in PerDylibResources()
106 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {} in PerDylibResources()
107 JITDylib &getImplDylib() { return ImplD; } in getImplDylib()
111 JITDylib &ImplD;
/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()
DCXIndexDataConsumer.cpp1039 ImplD = dyn_cast<ObjCImplementationDecl>(D)) { in getEntityDecl() local
1040 return getEntityDecl(ImplD->getClassInterface()); in getEntityDecl()
/external/llvm-project/clang/tools/libclang/
DCIndexHigh.cpp84 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) { in getCanonical() local
85 if (ImplD->getClassInterface()) in getCanonical()
86 return getCanonical(ImplD->getClassInterface()); in getCanonical()
DCXIndexDataConsumer.cpp1035 ImplD = dyn_cast<ObjCImplementationDecl>(D)) { in getEntityDecl() local
1036 return getEntityDecl(ImplD->getClassInterface()); in getEntityDecl()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp2095 const ObjCImplementationDecl *ImplD, in DiagnoseMissingDesignatedInitOverrides() argument
2103 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides()
2118 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
/external/clang/include/clang/AST/
DASTContext.h2332 ObjCImplementationDecl *ImplD);
2335 ObjCCategoryImplDecl *ImplD);
DDeclObjC.h1263 void setImplementation(ObjCImplementationDecl *ImplD);
2229 void setImplementation(ObjCCategoryImplDecl *ImplD);
/external/llvm-project/clang/lib/Sema/
DSemaObjCProperty.cpp2329 const ObjCImplementationDecl *ImplD, in DiagnoseMissingDesignatedInitOverrides() argument
2337 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides()
2361 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
/external/llvm-project/clang/include/clang/AST/
DDeclObjC.h1348 void setImplementation(ObjCImplementationDecl *ImplD);
2346 void setImplementation(ObjCCategoryImplDecl *ImplD);
DASTContext.h2760 ObjCImplementationDecl *ImplD);
2764 ObjCCategoryImplDecl *ImplD);

12