Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp70 if (flags & BreakScope) BreakParent = this; in setFlags()
116 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
118 if (FlagsToSet & BreakScope) { in AddFlags()
119 assert((Flags & BreakScope) == 0 && "Already set"); in AddFlags()
207 {BreakScope, "BreakScope"}, in dumpImpl()
H A DSemaExpr.cpp13718 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope in DiagnoseCommaOperator()
13719 : Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h55 BreakScope = 0x02, enumerator
495 return (getFlags() & Scope::BreakScope) && in isLoopScope()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1788 getCurScope()->AddFlags(Scope::BreakScope); in ParseSwitchStatement()
1837 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1840 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1893 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1895 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
2246 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
2262 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
H A DParseOpenACC.cpp587 return Scope::BreakScope | Scope::ContinueScope | in getOpenACCScopeFlags()
H A DParseExprCXX.cpp2137 S->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseCXXCondition()