Searched defs:FnBodyScope (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp305 void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) { argument
314 PushDeclContext(FnBodyScope, MDecl);
323 PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope);
324 PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope);
339 PushOnScopeChains(Param, FnBodyScope);
H A DSemaTemplate.cpp6325 Decl *Sema::ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope, argument
6335 Scope *ParentScope = FnBodyScope->getParent();
6340 return ActOnStartOfFunctionDef(FnBodyScope, DP);
H A DSemaDecl.cpp9716 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) { argument
9719 Scope *ParentScope = FnBodyScope->getParent();
9723 return ActOnStartOfFunctionDef(FnBodyScope, DP);
9849 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D) { argument
9926 if (FnBodyScope)
9927 PushDeclContext(FnBodyScope, FD);
9938 if (Param->getIdentifier() && FnBodyScope) {
9939 CheckShadow(FnBodyScope, Param);
9941 PushOnScopeChains(Param, FnBodyScope);
9947 if (FnBodyScope) {
[all...]

Completed in 1523 milliseconds