Home
last modified time | relevance | path

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

/external/clang/lib/ARCMigrate/
DObjCMT.cpp53 const ObjCImplementationDecl *ImpDecl);
600 const ObjCImplementationDecl *ImpDecl, in ClassImplementsAllMethodsAndProperties() argument
617 if (!ImpDecl->FindPropertyImplDecl( in ClassImplementsAllMethodsAndProperties()
644 DeclContext::lookup_result R = ImpDecl->lookup(MD->getDeclName()); in ClassImplementsAllMethodsAndProperties()
842 const ObjCImplementationDecl *ImpDecl) { in migrateProtocolConformance() argument
843 const ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface(); in migrateProtocolConformance()
864 if (ClassImplementsAllMethodsAndProperties(Ctx, ImpDecl, IDecl, in migrateProtocolConformance()
1045 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateMethodInstanceType() local
1046 IDecl = ImpDecl->getClassInterface(); in migrateMethodInstanceType()
1316 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateFactoryMethod() local
[all …]
/external/clang/lib/Sema/
DSemaDeclObjC.cpp2018 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument
2021 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
2022 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()
2032 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2034 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
2045 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
2046 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()
2065 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2067 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
4402 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { in ActOnMethodDeclaration() local
[all …]
/external/clang/lib/AST/
DDeclObjC.cpp722 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
723 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
724 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
/external/clang/include/clang/Sema/
DSema.h3086 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,