Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaDeclObjC.cpp300 void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) { in ActOnStartOfObjCMethodDef() argument
309 PushDeclContext(FnBodyScope, MDecl); in ActOnStartOfObjCMethodDef()
318 PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope); in ActOnStartOfObjCMethodDef()
319 PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope); in ActOnStartOfObjCMethodDef()
334 PushOnScopeChains(Param, FnBodyScope); in ActOnStartOfObjCMethodDef()
DSemaDecl.cpp11072 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D, in ActOnStartOfFunctionDef() argument
11077 Scope *ParentScope = FnBodyScope->getParent(); in ActOnStartOfFunctionDef()
11081 return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody); in ActOnStartOfFunctionDef()
11232 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D, in ActOnStartOfFunctionDef() argument
11292 if (FnBodyScope) in ActOnStartOfFunctionDef()
11293 PushDeclContext(FnBodyScope, FD); in ActOnStartOfFunctionDef()
11304 if (Param->getIdentifier() && FnBodyScope) { in ActOnStartOfFunctionDef()
11305 CheckShadow(FnBodyScope, Param); in ActOnStartOfFunctionDef()
11307 PushOnScopeChains(Param, FnBodyScope); in ActOnStartOfFunctionDef()
11313 if (FnBodyScope) { in ActOnStartOfFunctionDef()
[all …]