• Home
  • Raw
  • Download

Lines Matching refs:getCurScope

65     Actions.CodeCompleteNamespaceDecl(getCurScope());  in ParseNamespace()
126 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() || in ParseNamespace()
127 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() || in ParseNamespace()
128 getCurScope()->getFnParent()) { in ParseNamespace()
176 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc, in ParseNamespace()
222 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(), in ParseInnerNamespace()
247 Actions.CodeCompleteNamespaceAliasDecl(getCurScope()); in ParseNamespaceAlias()
272 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias, in ParseNamespaceAlias()
292 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(), in ParseLinkage()
308 getCurScope(), LinkageSpec, SourceLocation()) in ParseLinkage()
358 getCurScope(), LinkageSpec, T.getCloseLocation()) in ParseLinkage()
376 Actions.CodeCompleteUsing(getCurScope()); in ParseUsingDirectiveOrDeclaration()
422 Actions.CodeCompleteUsingDirective(getCurScope()); in ParseUsingDirective()
461 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective()
649 return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg, in ParseUsingDeclaration()
654 return Actions.ActOnUsingDeclaration(getCurScope(), AS, in ParseUsingDeclaration()
934 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); in ParseBaseTypeSpecifier()
970 if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(), in ParseBaseTypeSpecifier()
1010 ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true, in ParseBaseTypeSpecifier()
1035 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); in ParseBaseTypeSpecifier()
1185 Actions.CodeCompleteTag(getCurScope(), TagType); in ParseClassSpecifier()
1485 = Actions.ActOnExplicitInstantiation(getCurScope(), in ParseClassSpecifier()
1556 getCurScope(), TagType, TUK, StartLoc, DS.getModulePrivateSpecLoc(), in ParseClassSpecifier()
1572 = Actions.ActOnExplicitInstantiation(getCurScope(), in ParseClassSpecifier()
1582 Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(), in ParseClassSpecifier()
1613 TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc, in ParseClassSpecifier()
1625 TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK, in ParseClassSpecifier()
1825 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope(); in HandleMemberFunctionDeclDelays()
2055 Actions.ActOnUsingDeclaration(getCurScope(), AS, in ParseCXXClassMemberDeclaration()
2157 Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams); in ParseCXXClassMemberDeclaration()
2312 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo, in ParseCXXClassMemberDeclaration()
2315 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, in ParseCXXClassMemberDeclaration()
2328 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs); in ParseCXXClassMemberDeclaration()
2431 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCXXClassMemberDeclaration()
2516 for (const Scope *S = getCurScope(); S; S = S->getParent()) { in ParseCXXMemberSpecification()
2553 Actions.ActOnTagStartDefinition(getCurScope(), TagDecl); in ParseCXXMemberSpecification()
2592 Actions.ActOnTagDefinitionError(getCurScope(), TagDecl); in ParseCXXMemberSpecification()
2602 Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc, in ParseCXXMemberSpecification()
2720 Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl, in ParseCXXMemberSpecification()
2748 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, in ParseCXXMemberSpecification()
2904 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II, in ParseMemInitializer()
2924 return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II, in ParseMemInitializer()
2983 NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc, in tryParseExceptionSpecification()
3152 assert(getCurScope()->isClassScope() && "Nested class outside of class scope?"); in PopParsingClass()
3154 Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope(); in PopParsingClass()