Home
last modified time | relevance | path

Searched refs:ImplDecl (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DBodyFarm.cpp725 } else if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container)) { in findBackingIvar() local
726 PrimaryInterface = ImplDecl->getClassInterface(); in findBackingIvar()
782 const ObjCImplementationDecl *ImplDecl = in createObjCPropertyGetter() local
784 if (ImplDecl) { in createObjCPropertyGetter()
785 for (const auto *I : ImplDecl->property_impls()) { in createObjCPropertyGetter()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaObjCProperty.cpp1052 ObjCMethodDecl *ImplDecl = ObjCMethodDecl::Create( in RedeclarePropertyAccessor() local
1060 ImplDecl->getMethodFamily(); in RedeclarePropertyAccessor()
1062 ImplDecl->setAttrs(Decl->getAttrs()); in RedeclarePropertyAccessor()
1063 ImplDecl->setSelfDecl(Decl->getSelfDecl()); in RedeclarePropertyAccessor()
1064 ImplDecl->setCmdDecl(Decl->getCmdDecl()); in RedeclarePropertyAccessor()
1067 ImplDecl->setMethodParams(Context, Decl->parameters(), SelLocs); in RedeclarePropertyAccessor()
1068 ImplDecl->setLexicalDeclContext(Impl); in RedeclarePropertyAccessor()
1069 ImplDecl->setDefined(false); in RedeclarePropertyAccessor()
1070 return ImplDecl; in RedeclarePropertyAccessor()
H A DSemaDeclObjC.cpp3838 } else if (auto *ImplDecl = dyn_cast<ObjCImplementationDecl>(OCD)) { in DiagnoseVariableSizedIvars() local
3839 IntfDecl = ImplDecl->getClassInterface(); in DiagnoseVariableSizedIvars()
3840 Ivars = ImplDecl->ivars(); in DiagnoseVariableSizedIvars()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp558 ObjCImplDecl *ImplDecl = Interface->getImplementation(); in diagnoseMissingReleases() local
561 ImplDecl->FindPropertyImplIvarDecl(IvarDecl->getIdentifier()); in diagnoseMissingReleases()
568 OS << "The '" << *IvarDecl << "' ivar in '" << *ImplDecl in diagnoseMissingReleases()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclObjC.cpp1336 if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container)) in findPropertyDecl() local
1338 Container = ImplDecl->getClassInterface(); in findPropertyDecl()
1661 if (ObjCImplementationDecl *ImplDecl = getImplementation()) { in all_declared_ivar_begin() local
1663 if (!ImplDecl->ivar_empty()) { in all_declared_ivar_begin()
1665 for (auto *IV : ImplDecl->ivars()) { in all_declared_ivar_begin()
H A DASTContext.cpp2774 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation()) in CountNonClassIvars() local
2775 count += ImplDecl->ivar_size(); in CountNonClassIvars()