Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DScope.cpp67 if (flags & ContinueScope) ContinueParent = this; in setFlags()
109 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
115 if (FlagsToSet & ContinueScope) { in AddFlags()
116 assert((Flags & ContinueScope) == 0 && "Already set"); in AddFlags()
149 {ContinueScope, "ContinueScope"}, 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/include/clang/Sema/
H A DScope.h56 ContinueScope = 0x04, enumerator
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1410 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()