Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDScope.cpp67 if (flags & ContinueScope) ContinueParent = this; in Init()
105 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
111 if (FlagsToSet & ContinueScope) { in AddFlags()
112 assert((Flags & ContinueScope) == 0 && "Already set"); in AddFlags()
149 } else if (Flags & ContinueScope) { in dumpImpl()
151 Flags &= ~ContinueScope; in dumpImpl()
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseStmt.cpp1311 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1314 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1363 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1365 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
1623 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDScope.h53 ContinueScope = 0x04, enumerator