Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DScope.cpp69 if (flags & ContinueScope) ContinueParent = this; in setFlags()
111 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
117 if (FlagsToSet & ContinueScope) { in AddFlags()
118 assert((Flags & ContinueScope) == 0 && "Already set"); in AddFlags()
203 {ContinueScope, "ContinueScope"}, in dumpImpl()
H A DSemaExpr.cpp14285 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope in DiagnoseCommaOperator()
14286 : Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DScope.h56 ContinueScope = 0x04, enumerator
505 return getFlags() & ScopeFlags::ContinueScope; in isContinueScope()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp1772 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()