Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DScope.cpp66 if (flags & ContinueScope) ContinueParent = this; in setFlags()
108 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
114 if (FlagsToSet & ContinueScope) { in AddFlags()
115 assert((Flags & ContinueScope) == 0 && "Already set"); in AddFlags()
148 {ContinueScope, "ContinueScope"}, in dumpImpl()
H A DSemaExpr.cpp13174 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope in DiagnoseCommaOperator()
13175 : Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp1614 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1617 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1670 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1672 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
1988 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
2003 if (!(getCurScope()->getFlags() & Scope::ContinueScope)) in ParseForStatement()
2004 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
H A DParseExprCXX.cpp1951 S->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseCXXCondition()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScope.h55 ContinueScope = 0x04, enumerator