Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp52 const ObjCImplementationDecl *ImpDecl);
620 if (!ImpDecl->FindPropertyImplDecl( in ClassImplementsAllMethodsAndProperties()
834 const ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface(); in migrateProtocolConformance()
855 if (ClassImplementsAllMethodsAndProperties(Ctx, ImpDecl, IDecl, in migrateProtocolConformance()
1036 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateMethodInstanceType() local
1037 IDecl = ImpDecl->getClassInterface(); in migrateMethodInstanceType()
1307 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateFactoryMethod() local
1308 IDecl = ImpDecl->getClassInterface(); in migrateFactoryMethod()
1866 else if (const ObjCImplementationDecl *ImpDecl = in HandleTranslationUnit() local
1869 canModify(ImpDecl)) in HandleTranslationUnit()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp2118 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
2129 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2136 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
2147 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
2167 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2169 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
4688 if (Impl != ImpDecl) in checkObjCDirectMethodClashes()
4696 if (CatImpl != ImpDecl) in checkObjCDirectMethodClashes()
4826 ImpDecl->addInstanceMethod(ObjCMethod); in ActOnMethodDeclaration()
4828 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp752 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
753 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
754 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
H A DASTImporter.cpp9347 const Decl *ImpDecl = importChecked(Err, FromPath[Idx]); in ImportAPValue() local
9350 ToPath[Idx] = cast<const CXXRecordDecl>(ImpDecl->getCanonicalDecl()); in ImportAPValue()
9374 const Decl *ImpDecl = importChecked( in ImportAPValue() local
9378 Base = APValue::LValueBase(cast<ValueDecl>(ImpDecl), in ImportAPValue()
9409 const Decl *ImpDecl = importChecked(Err, FromDecl); in ImportAPValue() local
9417 ImpDecl, FromPath[LoopIdx].getAsBaseOrMember().getInt())); in ImportAPValue()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4368 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,