Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp68 if (flags & BreakScope) BreakParent = this; in setFlags()
113 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
115 if (FlagsToSet & BreakScope) { in AddFlags()
116 assert((Flags & BreakScope) == 0 && "Already set"); in AddFlags()
204 {BreakScope, "BreakScope"}, in dumpImpl()
H A DSemaExpr.cpp14746 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope in DiagnoseCommaOperator()
14747 : Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1773 getCurScope()->AddFlags(Scope::BreakScope); in ParseSwitchStatement()
1822 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1825 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1878 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1880 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
2229 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
2245 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
H A DParseExprCXX.cpp2039 S->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseCXXCondition()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h52 BreakScope = 0x02, enumerator