Home
last modified time | relevance | path

Searched refs:ImpDecl (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DObjCMT.cpp52 const ObjCImplementationDecl *ImpDecl);
619 if (!ImpDecl->FindPropertyImplDecl( in ClassImplementsAllMethodsAndProperties()
833 const ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface(); in migrateProtocolConformance()
854 if (ClassImplementsAllMethodsAndProperties(Ctx, ImpDecl, IDecl, in migrateProtocolConformance()
1035 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateMethodInstanceType() local
1036 IDecl = ImpDecl->getClassInterface(); in migrateMethodInstanceType()
1306 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateFactoryMethod() local
1307 IDecl = ImpDecl->getClassInterface(); in migrateFactoryMethod()
1865 else if (const ObjCImplementationDecl *ImpDecl = in HandleTranslationUnit() local
1868 canModify(ImpDecl)) in HandleTranslationUnit()
[all …]
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclObjC.cpp2123 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
2134 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2141 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
2152 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
2172 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2174 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
4696 if (Impl != ImpDecl) in checkObjCDirectMethodClashes()
4704 if (CatImpl != ImpDecl) in checkObjCDirectMethodClashes()
4834 ImpDecl->addInstanceMethod(ObjCMethod); in ActOnMethodDeclaration()
4836 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
[all …]
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclObjC.cpp760 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
761 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
762 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
H A DASTImporter.cpp9730 const Decl *ImpDecl = importChecked(Err, FromPath[Idx]); in ImportAPValue() local
9733 ToPath[Idx] = cast<const CXXRecordDecl>(ImpDecl->getCanonicalDecl()); in ImportAPValue()
9757 const Decl *ImpDecl = importChecked( in ImportAPValue() local
9761 Base = APValue::LValueBase(cast<ValueDecl>(ImpDecl), in ImportAPValue()
9790 const Decl *ImpDecl = importChecked(Err, FromDecl); in ImportAPValue() local
9798 ImpDecl, FromPath[LoopIdx].getAsBaseOrMember().getInt())); in ImportAPValue()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h4629 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,