Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DScope.cpp66 if (flags & BreakScope) BreakParent = this; in setFlags()
109 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
111 if (FlagsToSet & BreakScope) { in AddFlags()
112 assert((Flags & BreakScope) == 0 && "Already set"); in AddFlags()
148 {BreakScope, "BreakScope"}, in dumpImpl()
H A DSemaExpr.cpp11512 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope in DiagnoseCommaOperator()
11513 : Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1361 getCurScope()->AddFlags(Scope::BreakScope); in ParseSwitchStatement()
1410 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1413 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1460 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1462 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
1736 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DScope.h52 BreakScope = 0x02, enumerator