Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp53 const ObjCImplementationDecl *ImpDecl);
617 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()
1868 else if (const ObjCImplementationDecl *ImpDecl = in HandleTranslationUnit() local
1871 canModify(ImpDecl)) in HandleTranslationUnit()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp2099 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
2100 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()
2110 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2112 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
2123 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
2143 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2145 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
4647 PrevMethod = ImpDecl->getInstanceMethod(Sel); in ActOnMethodDeclaration()
4648 ImpDecl->addInstanceMethod(ObjCMethod); in ActOnMethodDeclaration()
4650 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp751 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
752 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
753 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3442 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,