| /freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| HD | 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()
|
| HD | IvarInvalidationChecker.cpp | 359 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()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/ |
| HD | TransProperties.cpp | 61 ObjCPropertyImplDecl *ImplD; member 64 : PropD(propD), IvarD(nullptr), ImplD(nullptr) {} in PropData() 125 I->ImplD = implD; in doTransform() 206 if (I->ImplD) in removeAssignForDefaultStrong() 235 if (I->ImplD) in rewriteAssign() 260 if (I->ImplD) { in maybeAddWeakOrUnsafeUnretainedAttr() 267 I->ImplD->getLocation()); in maybeAddWeakOrUnsafeUnretainedAttr()
|
| HD | ObjCMT.cpp | 85 const ObjCImplementationDecl *ImplD); 1711 const ObjCImplementationDecl *ImplD) { in inferDesignatedInitializers() argument 1713 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface(); in inferDesignatedInitializers() 1719 for (const auto *MD : ImplD->instance_methods()) { in inferDesignatedInitializers() 1942 ImplD = dyn_cast<ObjCImplementationDecl>(*D)) { in HandleTranslationUnit() local 1944 canModify(ImplD)) in HandleTranslationUnit() 1945 inferDesignatedInitializers(Ctx, ImplD); in HandleTranslationUnit()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ |
| HD | DeclObjC.cpp | 497 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers() local 498 for (const auto *MD : ImplD->instance_methods()) { in isIntroducingInitializers() 921 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() local 922 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl() 923 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 926 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() local 927 if (!ImplD->isInvalidDecl()) in getNextRedeclarationImpl() 928 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 930 } else if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { in getNextRedeclarationImpl() local 931 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl() [all …]
|
| HD | ASTContext.cpp | 2742 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument 2743 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation() 2744 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation() 2749 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument 2750 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation() 2751 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| HD | CompileOnDemandLayer.cpp | 174 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()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| HD | CompileOnDemandLayer.h | 104 PerDylibResources(JITDylib &ImplD, in PerDylibResources() 106 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {} in PerDylibResources() 107 JITDylib &getImplDylib() { return ImplD; } in getImplDylib() 111 JITDylib &ImplD;
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/ |
| HD | SemaObjCProperty.cpp | 2332 const ObjCImplementationDecl *ImplD, in DiagnoseMissingDesignatedInitOverrides() argument 2340 for (const auto *I : ImplD->instance_methods()) in DiagnoseMissingDesignatedInitOverrides() 2364 Diag(ImplD->getLocation(), in DiagnoseMissingDesignatedInitOverrides()
|
| HD | SemaDeclObjC.cpp | 5222 const ObjCImplementationDecl *ImplD) { in DiagnoseUnusedBackingIvarInAccessor() argument 5226 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor()
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ |
| HD | DeclObjC.h | 1364 void setImplementation(ObjCImplementationDecl *ImplD); 2354 void setImplementation(ObjCCategoryImplDecl *ImplD);
|
| HD | ASTContext.h | 2727 ObjCImplementationDecl *ImplD); 2731 ObjCCategoryImplDecl *ImplD);
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ |
| HD | ASTReader.cpp | 7569 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument 7571 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer() 7573 for (auto *I : ImplD->methods()) in PassObjCImplDeclToConsumer() 7576 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer() 7580 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local 7581 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ |
| HD | Sema.h | 3902 const ObjCImplementationDecl *ImplD); 3955 const ObjCImplementationDecl *ImplD,
|