Home
last modified time | relevance | path

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

/freebsd-14.2/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.cpp89 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
H A DCheckObjCDealloc.cpp566 ObjCImplDecl *ImplDecl = Interface->getImplementation(); in diagnoseMissingReleases()
/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp149 return ID->getImplementation() != nullptr; in hasObjCImpl()
151 return CD->getImplementation() != nullptr; in hasObjCImpl()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp508 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers()
768 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod()
1635 ObjCImplementationDecl *ObjCInterfaceDecl::getImplementation() const { in getImplementation() function in ObjCInterfaceDecl
1717 if (ObjCImplementationDecl *ImplDecl = getImplementation()) { in all_declared_ivar_begin()
1773 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryInstanceMethod()
1783 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryClassMethod()
2169 ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { in getImplementation() function in ObjCCategoryDecl
H A DJSONNodeDumper.cpp1096 JOS.attribute("implementation", createBareDeclRef(D->getImplementation())); in VisitObjCCategoryDecl()
1124 JOS.attribute("implementation", createBareDeclRef(D->getImplementation())); in VisitObjCInterfaceDecl()
H A DTextNodeDumper.cpp2508 dumpDeclRef(D->getImplementation()); in VisitObjCCategoryDecl()
2530 dumpDeclRef(D->getImplementation()); in VisitObjCInterfaceDecl()
H A DASTImporter.cpp4886 if (D->getImplementation()) { in VisitObjCCategoryDecl()
4888 import(D->getImplementation())) in VisitObjCCategoryDecl()
5423 if (From->getImplementation()) { in ImportDefinition()
5425 import(From->getImplementation())) in ImportDefinition()
5536 ObjCCategoryImplDecl *ToImpl = Category->getImplementation(); in VisitObjCCategoryImplDecl()
5579 ObjCImplementationDecl *Impl = Iface->getImplementation(); in VisitObjCImplementationDecl()
5609 Importer.MapImported(D, Iface->getImplementation()); in VisitObjCImplementationDecl()
5611 Importer.MapImported(D, Iface->getImplementation()); in VisitObjCImplementationDecl()
H A DASTContext.cpp2842 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation()) in CountNonClassIvars()
/freebsd-14.2/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()
1849 if (!CategoryName && IDecl->getImplementation()) { in ActOnStartCategoryInterface()
1851 Diag(IDecl->getImplementation()->getLocation(), in ActOnStartCategoryInterface()
1962 if (CatIDecl->getImplementation()) { in ActOnStartCategoryImplementation()
1965 Diag(CatIDecl->getImplementation()->getLocation(), in ActOnStartCategoryImplementation()
2088 if (IDecl->getImplementation()) { in ActOnStartClassImplementation()
2091 Diag(IDecl->getImplementation()->getLocation(), in ActOnStartClassImplementation()
4706 else if (auto *Impl = IDecl->getImplementation()) in checkObjCDirectMethodClashes()
[all …]
H A DSemaLookup.cpp4287 if (IFace->getImplementation()) { in lookupInDeclContext()
4289 lookupInDeclContext(IFace->getImplementation(), Result, in lookupInDeclContext()
4306 if (Category->getImplementation()) { in lookupInDeclContext()
4308 lookupInDeclContext(Category->getImplementation(), Result, in lookupInDeclContext()
H A DSemaCodeComplete.cpp233 ObjCImplementation = Interface->getImplementation(); in ResultBuilder()
7642 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) in AddObjCMethods()
7656 if (ObjCImplementationDecl *Impl = IFace->getImplementation()) in AddObjCMethods()
8531 (!OnlyUnimplemented || !Class->getImplementation())) in AddInterfaceResults()
8678 if ((!IgnoreImplemented || !Cat->getImplementation()) && in CodeCompleteObjCImplementationCategory()
H A DSemaObjCProperty.cpp2108 if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) { in DiagnoseUnimplementedProperties()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp796 const ObjCImplementationDecl *ImpD = IntD->getImplementation(); in createObjCPropertyGetter()
825 IVar->getContainingInterface()->getImplementation(); in createObjCPropertyGetter()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp50 return CGM.getContext().lookupFieldBitOffset(ID, ID->getImplementation(), in ComputeBitfieldBitOffset()
H A DCGDebugInfo.cpp2828 !ID->getImplementation()) in CreateType()
2842 if (!Def || !Def->getImplementation()) { in CreateType()
2964 if (ID->getImplementation()) in CreateTypeDefinition()
3094 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) { in CreateTypeDefinition()
H A DCGObjCMac.cpp1600 return ID->getImplementation() && ID->getSuperClass() && in isClassLayoutKnownStatically()
5184 if (ObjCImplementationDecl *IMP = ID->getImplementation()) in EmitModuleSymbols()
6184 if (ObjCImplementationDecl *IMP = ID->getImplementation()) in FinishNonFragileABIModule()
7179 ComputeIvarBaseOffset(CGM, Interface->getImplementation(), Ivar)); in EmitIvarOffset()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1338 ObjCImplementationDecl *getImplementation() const;
2382 ObjCCategoryImplDecl *getImplementation() const;
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6489 if (CDecl->getImplementation()) in Write_class_t()
6503 if (SuperClass->getImplementation()) in Write_class_t()
6515 if (RootClass->getImplementation()) in Write_class_t()
6625 if (ClassDecl->getImplementation()) in Write_category_t()