Home
last modified time | relevance | path

Searched refs:BreakScope (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DScope.cpp65 if (flags & BreakScope) BreakParent = this; in setFlags()
108 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
110 if (FlagsToSet & BreakScope) { in AddFlags()
111 assert((Flags & BreakScope) == 0 && "Already set"); in AddFlags()
199 {BreakScope, "BreakScope"}, in dumpImpl()
H A DSemaExpr.cpp14007 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope in DiagnoseCommaOperator()
14008 : Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseStmt.cpp1700 getCurScope()->AddFlags(Scope::BreakScope); in ParseSwitchStatement()
1749 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1752 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1806 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1808 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
2141 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
2157 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
H A DParseExprCXX.cpp1978 S->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseCXXCondition()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DScope.h51 BreakScope = 0x02, enumerator