Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Sema/
H A DScope.cpp68 if (flags & BreakScope) BreakParent = this; in setFlags()
111 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
113 if (FlagsToSet & BreakScope) { in AddFlags()
114 assert((Flags & BreakScope) == 0 && "Already set"); in AddFlags()
202 {BreakScope, "BreakScope"}, in dumpImpl()
H A DSemaExpr.cpp14285 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope in DiagnoseCommaOperator()
14286 : Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp1723 getCurScope()->AddFlags(Scope::BreakScope); in ParseSwitchStatement()
1772 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1775 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1828 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1830 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
2163 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
2179 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
H A DParseExprCXX.cpp2029 S->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseCXXCondition()
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DScope.h52 BreakScope = 0x02, enumerator