Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DScope.cpp64 if (flags & ContinueScope) ContinueParent = this; in Init()
102 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
108 if (FlagsToSet & ContinueScope) { in AddFlags()
109 assert((Flags & ContinueScope) == 0 && "Already set"); in AddFlags()
146 } else if (Flags & ContinueScope) { in dumpImpl()
148 Flags &= ~ContinueScope; in dumpImpl()
/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DScope.h53 ContinueScope = 0x04, enumerator
/minix3/external/bsd/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp1299 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1302 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1351 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1353 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
1611 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()