Lines Matching refs:ScopeFlags
858 unsigned ScopeFlags) { in ParseCompoundStatement() argument
863 ParseScope CompoundScope(this, ScopeFlags); in ParseCompoundStatement()
1279 unsigned ScopeFlags = Scope::SwitchScope; in ParseSwitchStatement() local
1281 ScopeFlags |= Scope::DeclScope | Scope::ControlScope; in ParseSwitchStatement()
1282 ParseScope SwitchScope(this, ScopeFlags); in ParseSwitchStatement()
1365 unsigned ScopeFlags; in ParseWhileStatement() local
1367 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1370 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1371 ParseScope WhileScope(this, ScopeFlags); in ParseWhileStatement()
1415 unsigned ScopeFlags; in ParseDoStatement() local
1417 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1419 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
1421 ParseScope DoScope(this, ScopeFlags); in ParseDoStatement()
1547 unsigned ScopeFlags = 0; in ParseForStatement() local
1549 ScopeFlags = Scope::DeclScope | Scope::ControlScope; in ParseForStatement()
1551 ParseScope ForScope(this, ScopeFlags); in ParseForStatement()