Lines Matching refs:getCurScope

176     Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement);  in ParseStatementOrDeclarationAfterAttributes()
413 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() && in ParseExprStatement()
495 ParseScopeFlags FilterScope(this, getCurScope()->getFlags() | in ParseSEHExceptBlock()
555 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); in ParseSEHLeaveStatement()
666 Actions.CodeCompleteCase(getCurScope()); in ParseCaseStatement()
828 SubStmt.get(), getCurScope()); in ParseDefaultStatement()
970 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCompoundStatementBody()
1072 Cond = Actions.ActOnCondition(getCurScope(), Loc, CondExpr.get(), CK); in ParseParenExprOrCondition()
1222 Actions.CodeCompleteAfterIf(getCurScope()); in ParseIfStatement()
1318 getCurScope()->AddFlags(Scope::BreakScope); in ParseSwitchStatement()
1324 getCurScope()->decrementMSManglingNumber(); in ParseSwitchStatement()
1566 Actions.CodeCompleteOrdinaryName(getCurScope(), in ParseForStatement()
1599 FirstPart = Actions.ActOnCXXForRangeIdentifier(getCurScope(), Loc, Name, in ParseForStatement()
1629 Actions.CodeCompleteObjCForCollection(getCurScope(), DG); in ParseForStatement()
1657 Actions.CodeCompleteObjCForCollection(getCurScope(), nullptr); in ParseForStatement()
1682 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
1699 Actions.ActOnCondition(getCurScope(), ForLoc, SecondExpr.get(), in ParseForStatement()
1744 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), in ParseForStatement()
1782 getCurScope()->decrementMSManglingNumber(); in ParseForStatement()
1851 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
1862 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
1881 Actions.CodeCompleteReturn(getCurScope()); in ParseReturnStatement()
1902 return Actions.ActOnReturnStmt(ReturnLoc, R.get(), getCurScope()); in ParseReturnStatement()
2164 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()