Lines Matching refs:ScopeFlags
1034 unsigned ScopeFlags) { in ParseCompoundStatement() argument
1039 ParseScope CompoundScope(this, ScopeFlags); in ParseCompoundStatement()
1747 unsigned ScopeFlags = Scope::SwitchScope; in ParseSwitchStatement() local
1749 ScopeFlags |= Scope::DeclScope | Scope::ControlScope; in ParseSwitchStatement()
1750 ParseScope SwitchScope(this, ScopeFlags); in ParseSwitchStatement()
1835 unsigned ScopeFlags; in ParseWhileStatement() local
1837 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1840 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1841 ParseScope WhileScope(this, ScopeFlags); in ParseWhileStatement()
1891 unsigned ScopeFlags; in ParseDoStatement() local
1893 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1895 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
1897 ParseScope DoScope(this, ScopeFlags); in ParseDoStatement()
2036 unsigned ScopeFlags = 0; in ParseForStatement() local
2038 ScopeFlags = Scope::DeclScope | Scope::ControlScope; in ParseForStatement()
2040 ParseScope ForScope(this, ScopeFlags); in ParseForStatement()