Home
last modified time | relevance | path

Searched refs:FnBodyScope (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Sema/
DSemaDeclObjC.cpp301 void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) { in ActOnStartOfObjCMethodDef() argument
310 PushDeclContext(FnBodyScope, MDecl); in ActOnStartOfObjCMethodDef()
319 PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope); in ActOnStartOfObjCMethodDef()
320 PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope); in ActOnStartOfObjCMethodDef()
335 PushOnScopeChains(Param, FnBodyScope); in ActOnStartOfObjCMethodDef()
DSemaDecl.cpp10662 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D, in ActOnStartOfFunctionDef() argument
10667 Scope *ParentScope = FnBodyScope->getParent(); in ActOnStartOfFunctionDef()
10671 return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody); in ActOnStartOfFunctionDef()
10822 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D, in ActOnStartOfFunctionDef() argument
10882 if (FnBodyScope) in ActOnStartOfFunctionDef()
10883 PushDeclContext(FnBodyScope, FD); in ActOnStartOfFunctionDef()
10894 if (Param->getIdentifier() && FnBodyScope) { in ActOnStartOfFunctionDef()
10895 CheckShadow(FnBodyScope, Param); in ActOnStartOfFunctionDef()
10897 PushOnScopeChains(Param, FnBodyScope); in ActOnStartOfFunctionDef()
10903 if (FnBodyScope) { in ActOnStartOfFunctionDef()
[all …]