Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp39 auto getImplementation() const -> TFunctionType in getImplementation() function
47 auto imp = m.getImplementation<int, int, int>(); in f()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp149 return ID->getImplementation() != nullptr; in hasObjCImpl()
151 return CD->getImplementation() != nullptr; in hasObjCImpl()
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclObjC.cpp511 if (const auto *ImplD = D->getImplementation()) { in isIntroducingInitializers()
760 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod()
1600 ObjCImplementationDecl *ObjCInterfaceDecl::getImplementation() const { in getImplementation() function in ObjCInterfaceDecl
1682 if (ObjCImplementationDecl *ImplDecl = getImplementation()) { in all_declared_ivar_begin()
1738 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryInstanceMethod()
1748 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryClassMethod()
2097 ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { in getImplementation() function in ObjCCategoryDecl
H A DJSONNodeDumper.cpp1002 JOS.attribute("implementation", createBareDeclRef(D->getImplementation())); in VisitObjCCategoryDecl()
1030 JOS.attribute("implementation", createBareDeclRef(D->getImplementation())); in VisitObjCInterfaceDecl()
H A DTextNodeDumper.cpp2274 dumpDeclRef(D->getImplementation()); in VisitObjCCategoryDecl()
2296 dumpDeclRef(D->getImplementation()); in VisitObjCInterfaceDecl()
H A DASTImporter.cpp4543 if (D->getImplementation()) { in VisitObjCCategoryDecl()
4545 import(D->getImplementation())) in VisitObjCCategoryDecl()
5079 if (From->getImplementation()) { in ImportDefinition()
5081 import(From->getImplementation())) in ImportDefinition()
5192 ObjCCategoryImplDecl *ToImpl = Category->getImplementation(); in VisitObjCCategoryImplDecl()
5235 ObjCImplementationDecl *Impl = Iface->getImplementation(); in VisitObjCImplementationDecl()
5265 Importer.MapImported(D, Iface->getImplementation()); in VisitObjCImplementationDecl()
5267 Importer.MapImported(D, Iface->getImplementation()); in VisitObjCImplementationDecl()
H A DASTContext.cpp2870 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation()) in CountNonClassIvars()
/llvm-project-15.0.7/libc/benchmarks/automemcpy/lib/
H A DCodeGen.cpp283 getImplementation(const NamedFunctionDescriptor &NamedFD) { in getImplementation() function
310 Stream << getImplementation(FD); in Serialize()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DAST.cpp364 return ID->getImplementation(); in getCorrespondingObjCImpl()
368 return ID->getImplementation(); in getCorrespondingObjCImpl()
371 return CD->getImplementation(); in getCorrespondingObjCImpl()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclObjC.cpp448 ImplDeclOfMethodDecl = OID->getImplementation(); in ActOnStartOfObjCMethodDef()
452 ImplDeclOfMethodDecl = OID->getImplementation(); in ActOnStartOfObjCMethodDef()
454 ImplDeclOfMethodDecl = CD->getImplementation(); in ActOnStartOfObjCMethodDef()
1835 if (!CategoryName && IDecl->getImplementation()) { in ActOnStartCategoryInterface()
1837 Diag(IDecl->getImplementation()->getLocation(), in ActOnStartCategoryInterface()
1948 if (CatIDecl->getImplementation()) { in ActOnStartCategoryImplementation()
1951 Diag(CatIDecl->getImplementation()->getLocation(), in ActOnStartCategoryImplementation()
2074 if (IDecl->getImplementation()) { in ActOnStartClassImplementation()
2077 Diag(IDecl->getImplementation()->getLocation(), in ActOnStartClassImplementation()
4695 else if (auto *Impl = IDecl->getImplementation()) in checkObjCDirectMethodClashes()
[all …]
H A DSemaLookup.cpp4257 if (IFace->getImplementation()) { in lookupInDeclContext()
4259 lookupInDeclContext(IFace->getImplementation(), Result, in lookupInDeclContext()
4276 if (Category->getImplementation()) { in lookupInDeclContext()
4278 lookupInDeclContext(Category->getImplementation(), Result, in lookupInDeclContext()
H A DSemaCodeComplete.cpp231 ObjCImplementation = Interface->getImplementation(); in ResultBuilder()
7501 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) in AddObjCMethods()
7515 if (ObjCImplementationDecl *Impl = IFace->getImplementation()) in AddObjCMethods()
8387 (!OnlyUnimplemented || !Class->getImplementation())) in AddInterfaceResults()
8516 if ((!IgnoreImplemented || !Cat->getImplementation()) && in CodeCompleteObjCImplementationCategory()
H A DSemaObjCProperty.cpp2112 if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) { in DiagnoseUnimplementedProperties()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DBodyFarm.cpp794 const ObjCImplementationDecl *ImpD = IntD->getImplementation(); in createObjCPropertyGetter()
823 IVar->getContainingInterface()->getImplementation(); in createObjCPropertyGetter()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp49 return CGM.getContext().lookupFieldBitOffset(ID, ID->getImplementation(), in ComputeBitfieldBitOffset()
H A DCGDebugInfo.cpp2673 !ID->getImplementation()) in CreateType()
2687 if (!Def || !Def->getImplementation()) { in CreateType()
2805 if (ID->getImplementation()) in CreateTypeDefinition()
2932 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) { in CreateTypeDefinition()
H A DCGObjCMac.cpp1596 return ID->getImplementation() && ID->getSuperClass() && in isClassLayoutKnownStatically()
5204 if (ObjCImplementationDecl *IMP = ID->getImplementation()) in EmitModuleSymbols()
6216 if (ObjCImplementationDecl *IMP = ID->getImplementation()) in FinishNonFragileABIModule()
7216 ComputeIvarBaseOffset(CGM, Interface->getImplementation(), Ivar)); in EmitIvarOffset()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclObjC.h1327 ObjCImplementationDecl *getImplementation() const;
2335 ObjCCategoryImplDecl *getImplementation() const;
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp6790 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation()) in clang_getCursorDefinition()
6801 cast<ObjCCategoryDecl>(D)->getImplementation()) in clang_getCursorDefinition()
6821 } else if (ObjCImplementationDecl *Impl = IFace->getImplementation()) in clang_getCursorDefinition()