Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaDeclObjC.cpp1067 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument
1070 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
1071 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()
1081 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
1083 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
1094 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
1095 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()
1105 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
1107 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
2919 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { in ActOnMethodDeclaration() local
[all …]
DSemaExprObjC.cpp1579 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local
1580 Getter = ImpDecl->getClassMethod(Sel); in ActOnClassPropertyRefExpr()
1600 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local
1601 Setter = ImpDecl->getClassMethod(SetterSel); in ActOnClassPropertyRefExpr()
DSemaObjCProperty.cpp1423 if (ObjCImplementationDecl *ImpDecl = IDecl->getImplementation()) in isPropertyReadonly() local
1424 if (ImpDecl->getInstanceMethod(PDecl->getSetterName())) in isPropertyReadonly()
/external/clang/lib/AST/
DDeclObjC.cpp380 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
381 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
382 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
/external/clang/include/clang/Sema/
DSema.h2264 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,