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

/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp38 const ObjCImplementationDecl *ImpDecl);
307 const ObjCImplementationDecl *ImpDecl,
326 if (!ImpDecl->FindPropertyImplDecl(
354 DeclContext::lookup_const_result R = ImpDecl->lookup(MD->getDeclName());
464 const ObjCImplementationDecl *ImpDecl) {
465 const ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface();
488 if (ClassImplementsAllMethodsAndProperties(Ctx, ImpDecl, IDecl,
616 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl))
617 IDecl = ImpDecl->getClassInterface();
653 else if (ObjCImplDecl *ImpDecl
306 ClassImplementsAllMethodsAndProperties(ASTContext &Ctx, const ObjCImplementationDecl *ImpDecl, const ObjCInterfaceDecl *IDecl, ObjCProtocolDecl *Protocol) argument
463 migrateProtocolConformance(ASTContext &Ctx, const ObjCImplementationDecl *ImpDecl) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp1108 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, argument
1111 assert(ImpDecl && "missing implementation decl");
1112 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface();
1122 ivars[i]->setLexicalDeclContext(ImpDecl);
1124 ImpDecl->addDecl(ivars[i]);
1135 if (ImpDecl->getSuperClass())
1136 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use);
1159 ImplIvar->setLexicalDeclContext(ImpDecl);
1161 ImpDecl->addDecl(ImplIvar);
3188 if (ObjCImplDecl *ImpDecl
[all...]
H A DSemaExprObjC.cpp1704 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation())
1705 Getter = ImpDecl->getClassMethod(Sel);
1726 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation())
1727 Setter = ImpDecl->getClassMethod(SetterSel);
/external/clang/lib/AST/
H A DDeclObjC.cpp524 if (ObjCImplementationDecl *ImpDecl = getImplementation())
525 Method = Instance ? ImpDecl->getInstanceMethod(Sel)
526 : ImpDecl->getClassMethod(Sel);
/external/clang/include/clang/Sema/
H A DSema.h2559 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,

Completed in 301 milliseconds