Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaDeclObjC.cpp1080 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument
1083 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
1084 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()
1094 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
1096 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
1107 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
1108 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()
1118 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
1120 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
2979 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { in ActOnMethodDeclaration() local
[all …]
DSemaExprObjC.cpp1603 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local
1604 Getter = ImpDecl->getClassMethod(Sel); in ActOnClassPropertyRefExpr()
1624 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local
1625 Setter = ImpDecl->getClassMethod(SetterSel); in ActOnClassPropertyRefExpr()
DSemaObjCProperty.cpp1472 if (ObjCImplementationDecl *ImpDecl = IDecl->getImplementation()) in isPropertyReadonly() local
1473 if (ImpDecl->getInstanceMethod(PDecl->getSetterName())) in isPropertyReadonly()
/external/clang/lib/AST/
DDeclObjC.cpp441 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
442 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
443 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
/external/clang/include/clang/Sema/
DSema.h2430 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,