Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DObjCPropertyChecker.cpp57 const ObjCImplDecl *ImplD = nullptr; in checkCopyMutable() local
60 ImplD = IntD->getImplementation(); in checkCopyMutable()
62 ImplD = CatD->getClassInterface()->getImplementation(); in checkCopyMutable()
65 if (!ImplD || ImplD->HasUserDeclaredSetterMethod(D)) in checkCopyMutable()
H A 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()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A 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()
H A DObjCMT.cpp84 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()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp498 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local
499 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers()
919 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
924 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl()
928 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl()
957 if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { in getCanonicalDecl() local
958 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getCanonicalDecl()
1563 getASTContext().setObjCImplementation(getDefinition(), ImplD); in setImplementation()
2026 getASTContext().setObjCImplementation(this, ImplD); in setImplementation()
2084 Ctx.setObjCImplementation(IFace, ImplD); in setClassInterface()
[all …]
H A DASTContext.cpp2529 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument
2530 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation()
2531 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation()
2536 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument
2537 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation()
2538 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.cpp169 auto &ImplD = getExecutionSession().createJITDylib( in getPerDylibResources() local
178 NewSearchOrder.insert(std::next(NewSearchOrder.begin()), {&ImplD, true}); in getPerDylibResources()
179 ImplD.setSearchOrder(std::move(NewSearchOrder), false); in getPerDylibResources()
181 PerDylibResources PDR(ImplD, BuildIndirectStubsManager()); in getPerDylibResources()
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h102 PerDylibResources(JITDylib &ImplD, in PerDylibResources()
104 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {} in PerDylibResources()
105 JITDylib &getImplDylib() { return ImplD; } in getImplDylib()
109 JITDylib &ImplD;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp2266 const ObjCImplementationDecl *ImplD, in DiagnoseMissingDesignatedInitOverrides() argument
2274 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides()
2289 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
H A DSemaDeclObjC.cpp5036 const ObjCImplementationDecl *ImplD) { in DiagnoseUnusedBackingIvarInAccessor() argument
5040 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DASTContext.h2661 ObjCImplementationDecl *ImplD);
2665 ObjCCategoryImplDecl *ImplD);
H A DDeclObjC.h1350 void setImplementation(ObjCImplementationDecl *ImplD);
2340 void setImplementation(ObjCCategoryImplDecl *ImplD);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp7588 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument
7590 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer()
7592 for (auto *I : ImplD->methods()) in PassObjCImplDeclToConsumer()
7595 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer()
7599 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local
7600 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3477 const ObjCImplementationDecl *ImplD);
3530 const ObjCImplementationDecl *ImplD,