| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCPropertyChecker.cpp | 56 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()
|
| H A D | IvarInvalidationChecker.cpp | 359 visit(const ObjCImplementationDecl *ImplD) const { in visit() 366 const ObjCInterfaceDecl *InterfaceD = ImplD->getClassInterface(); in visit() 431 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit() 483 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | CompileOnDemandLayer.h | 99 PerDylibResources(JITDylib &ImplD, in PerDylibResources() 101 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {} in PerDylibResources() 102 JITDylib &getImplDylib() { return ImplD; } in getImplDylib() 106 JITDylib &ImplD;
|
| /openbsd-src/gnu/llvm/clang/lib/ARCMigrate/ |
| H A D | TransProperties.cpp | 61 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 D | ObjCMT.cpp | 85 const ObjCImplementationDecl *ImplD); 1697 const ObjCImplementationDecl *ImplD) { in inferDesignatedInitializers() argument 1699 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface(); in inferDesignatedInitializers() 1705 for (const auto *MD : ImplD->instance_methods()) { in inferDesignatedInitializers() 1928 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) { in HandleTranslationUnit() local 1930 canModify(ImplD)) in HandleTranslationUnit() 1931 inferDesignatedInitializers(Ctx, ImplD); in HandleTranslationUnit()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 508 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local 509 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 D | ASTContext.cpp | 2927 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument 2928 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation() 2929 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation() 2934 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument 2935 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation() 2936 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | CompileOnDemandLayer.cpp | 190 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()
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CIndexHigh.cpp | 84 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) { in getCanonical() local 85 if (ImplD->getClassInterface()) in getCanonical() 86 return getCanonical(ImplD->getClassInterface()); in getCanonical()
|
| H A D | CXIndexDataConsumer.cpp | 1048 ImplD = dyn_cast<ObjCImplementationDecl>(D)) { in getEntityDecl() local 1049 return getEntityDecl(ImplD->getClassInterface()); in getEntityDecl()
|
| H A D | CIndex.cpp | 6907 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in clang_getCanonicalCursor() local 6908 if (const ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in clang_getCanonicalCursor()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 2317 const ObjCImplementationDecl *ImplD, in DiagnoseMissingDesignatedInitOverrides() argument 2325 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides() 2349 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
|
| H A D | SemaDeclObjC.cpp | 5340 const ObjCImplementationDecl *ImplD) { in DiagnoseUnusedBackingIvarInAccessor() argument 5344 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 1331 void setImplementation(ObjCImplementationDecl *ImplD); 2372 void setImplementation(ObjCCategoryImplDecl *ImplD);
|
| H A D | ASTContext.h | 2979 ObjCImplementationDecl *ImplD); 2983 ObjCCategoryImplDecl *ImplD);
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 7796 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument 7798 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer() 7800 for (auto *I : ImplD->methods()) in PassObjCImplDeclToConsumer() 7803 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer() 7807 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local 7808 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Sema.h | 4787 const ObjCImplementationDecl *ImplD); 4840 const ObjCImplementationDecl *ImplD,
|