Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp52 const ObjCImplementationDecl *ImpDecl);
616 if (!ImpDecl->FindPropertyImplDecl( in ClassImplementsAllMethodsAndProperties()
830 const ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface(); in migrateProtocolConformance()
851 if (ClassImplementsAllMethodsAndProperties(Ctx, ImpDecl, IDecl, in migrateProtocolConformance()
1032 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateMethodInstanceType() local
1033 IDecl = ImpDecl->getClassInterface(); in migrateMethodInstanceType()
1303 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateFactoryMethod() local
1304 IDecl = ImpDecl->getClassInterface(); in migrateFactoryMethod()
1859 else if (const ObjCImplementationDecl *ImpDecl = in HandleTranslationUnit() local
1862 canModify(ImpDecl)) in HandleTranslationUnit()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp2137 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
2148 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2155 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
2166 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
2186 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2188 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
4707 if (Impl != ImpDecl) in checkObjCDirectMethodClashes()
4715 if (CatImpl != ImpDecl) in checkObjCDirectMethodClashes()
4846 ImpDecl->addInstanceMethod(ObjCMethod); in ActOnMethodDeclaration()
4848 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp768 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
769 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
770 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
H A DASTImporter.cpp10224 const Decl *ImpDecl = importChecked(Err, FromPath[Idx]); in ImportAPValue() local
10227 ToPath[Idx] = cast<const CXXRecordDecl>(ImpDecl->getCanonicalDecl()); in ImportAPValue()
10251 const Decl *ImpDecl = importChecked( in ImportAPValue() local
10255 Base = APValue::LValueBase(cast<ValueDecl>(ImpDecl), in ImportAPValue()
10284 const Decl *ImpDecl = importChecked(Err, FromDecl); in ImportAPValue() local
10292 ImpDecl, FromPath[LoopIdx].getAsBaseOrMember().getInt())); in ImportAPValue()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4878 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,