Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaDeclObjC.cpp996 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument
999 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
1000 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()
1010 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
1012 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
1023 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
1024 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()
1034 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
1036 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
2398 if (ObjCImplementationDecl *ImpDecl = in ActOnMethodDeclaration() local
[all …]
DSemaExprObjC.cpp470 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in LookupPrivateClassMethod() local
471 Method = ImpDecl->getClassMethod(Sel); in LookupPrivateClassMethod()
498 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in LookupPrivateInstanceMethod() local
499 Method = ImpDecl->getInstanceMethod(Sel); in LookupPrivateInstanceMethod()
775 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local
776 Getter = ImpDecl->getClassMethod(Sel); in ActOnClassPropertyRefExpr()
796 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local
797 Setter = ImpDecl->getClassMethod(SetterSel); in ActOnClassPropertyRefExpr()
DSemaObjCProperty.cpp1104 if (ObjCImplementationDecl *ImpDecl = IDecl->getImplementation()) in isPropertyReadonly() local
1105 if (ImpDecl->getInstanceMethod(PDecl->getSetterName())) in isPropertyReadonly()
/external/clang/lib/AST/
DDeclObjC.cpp318 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
319 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
320 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
/external/clang/lib/Parse/
DParseObjc.cpp1410 Decl *ImpDecl = PendingObjCImpDecl.pop_back_val(); in FinishPendingObjCActions() local
1411 Actions.ActOnAtEnd(getCurScope(), SourceRange(), ImpDecl); in FinishPendingObjCActions()
1412 return Actions.ConvertDeclToDeclGroup(ImpDecl); in FinishPendingObjCActions()
/external/clang/include/clang/Sema/
DSema.h1787 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,