Home
last modified time | relevance | path

Searched refs:getImplementation (Results 1 – 19 of 19) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCPropertyChecker.cpp59 ImplD = IntD->getImplementation(); in checkCopyMutable()
61 ImplD = CatD->getClassInterface()->getImplementation(); in checkCopyMutable()
H A DObjCUnusedIVarsChecker.cpp90 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
H A DCheckObjCDealloc.cpp558 ObjCImplDecl *ImplDecl = Interface->getImplementation(); in diagnoseMissingReleases()
/freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp149 return ID->getImplementation() != nullptr; in hasObjCImpl()
151 return CD->getImplementation() != nullptr; in hasObjCImpl()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp499 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers()
752 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod()
1584 ObjCImplementationDecl *ObjCInterfaceDecl::getImplementation() const { in getImplementation() function in ObjCInterfaceDecl
1661 if (ObjCImplementationDecl *ImplDecl = getImplementation()) { in all_declared_ivar_begin()
1717 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryInstanceMethod()
1727 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryClassMethod()
2076 ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { in getImplementation() function in ObjCCategoryDecl
H A DJSONNodeDumper.cpp995 JOS.attribute("implementation", createBareDeclRef(D->getImplementation())); in VisitObjCCategoryDecl()
1023 JOS.attribute("implementation", createBareDeclRef(D->getImplementation())); in VisitObjCInterfaceDecl()
H A DTextNodeDumper.cpp2241 dumpDeclRef(D->getImplementation()); in VisitObjCCategoryDecl()
2263 dumpDeclRef(D->getImplementation()); in VisitObjCInterfaceDecl()
H A DASTImporter.cpp4482 if (D->getImplementation()) { in VisitObjCCategoryDecl()
4484 import(D->getImplementation())) in VisitObjCCategoryDecl()
4969 if (From->getImplementation()) { in ImportDefinition()
4971 import(From->getImplementation())) in ImportDefinition()
5082 ObjCCategoryImplDecl *ToImpl = Category->getImplementation(); in VisitObjCCategoryImplDecl()
5125 ObjCImplementationDecl *Impl = Iface->getImplementation(); in VisitObjCImplementationDecl()
5155 Importer.MapImported(D, Iface->getImplementation()); in VisitObjCImplementationDecl()
5157 Importer.MapImported(D, Iface->getImplementation()); in VisitObjCImplementationDecl()
H A DASTContext.cpp2789 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation()) in CountNonClassIvars()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp448 ImplDeclOfMethodDecl = OID->getImplementation(); in ActOnStartOfObjCMethodDef()
452 ImplDeclOfMethodDecl = OID->getImplementation(); in ActOnStartOfObjCMethodDef()
454 ImplDeclOfMethodDecl = CD->getImplementation(); in ActOnStartOfObjCMethodDef()
1832 if (!CategoryName && IDecl->getImplementation()) { in ActOnStartCategoryInterface()
1834 Diag(IDecl->getImplementation()->getLocation(), in ActOnStartCategoryInterface()
1945 if (CatIDecl->getImplementation()) { in ActOnStartCategoryImplementation()
1948 Diag(CatIDecl->getImplementation()->getLocation(), in ActOnStartCategoryImplementation()
2070 if (IDecl->getImplementation()) { in ActOnStartClassImplementation()
2073 Diag(IDecl->getImplementation()->getLocation(), in ActOnStartClassImplementation()
4687 else if (auto *Impl = IDecl->getImplementation()) in checkObjCDirectMethodClashes()
[all …]
H A DSemaLookup.cpp3956 if (IFace->getImplementation()) { in lookupInDeclContext()
3958 lookupInDeclContext(IFace->getImplementation(), Result, in lookupInDeclContext()
3975 if (Category->getImplementation()) { in lookupInDeclContext()
3977 lookupInDeclContext(Category->getImplementation(), Result, in lookupInDeclContext()
H A DSemaCodeComplete.cpp227 ObjCImplementation = Interface->getImplementation(); in ResultBuilder()
7014 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) in AddObjCMethods()
7028 if (ObjCImplementationDecl *Impl = IFace->getImplementation()) in AddObjCMethods()
7900 (!OnlyUnimplemented || !Class->getImplementation())) in AddInterfaceResults()
8029 if ((!IgnoreImplemented || !Cat->getImplementation()) && in CodeCompleteObjCImplementationCategory()
H A DSemaObjCProperty.cpp2112 if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) { in DiagnoseUnimplementedProperties()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp754 const ObjCImplementationDecl *ImpD = IntD->getImplementation(); in createObjCPropertyGetter()
783 IVar->getContainingInterface()->getImplementation(); in createObjCPropertyGetter()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp49 return CGM.getContext().lookupFieldBitOffset(ID, ID->getImplementation(), in ComputeBitfieldBitOffset()
H A DCGDebugInfo.cpp2546 !ID->getImplementation()) in CreateType()
2560 if (!Def || !Def->getImplementation()) { in CreateType()
2678 if (ID->getImplementation()) in CreateTypeDefinition()
2805 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) { in CreateTypeDefinition()
H A DCGObjCMac.cpp1596 return ID->getImplementation() && ID->getSuperClass() && in isClassLayoutKnownStatically()
5257 if (ObjCImplementationDecl *IMP = ID->getImplementation()) in EmitModuleSymbols()
6269 if (ObjCImplementationDecl *IMP = ID->getImplementation()) in FinishNonFragileABIModule()
7249 ComputeIvarBaseOffset(CGM, Interface->getImplementation(), Ivar)); in EmitIvarOffset()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1325 ObjCImplementationDecl *getImplementation() const;
2323 ObjCCategoryImplDecl *getImplementation() const;
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6490 if (CDecl->getImplementation()) in Write_class_t()
6504 if (SuperClass->getImplementation()) in Write_class_t()
6516 if (RootClass->getImplementation()) in Write_class_t()
6626 if (ClassDecl->getImplementation()) in Write_category_t()