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

/external/clang/lib/Sema/
H A DScope.cpp64 if (flags & ContinueScope) ContinueParent = this;
102 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 &&
108 if (FlagsToSet & ContinueScope) {
109 assert((Flags & ContinueScope) == 0 && "Already set");
146 } else if (Flags & ContinueScope) {
147 OS << "ContinueScope";
148 Flags &= ~ContinueScope;
/external/clang/include/clang/Sema/
H A DScope.h53 ContinueScope = 0x04, enumerator in enum:clang::Scope::ScopeFlags
152 /// BreakScope/ContinueScope which contains the contents of this scope
/external/clang/lib/Parse/
H A DParseStmt.cpp1300 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1303 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1352 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope;
1354 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1615 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope);

Completed in 656 milliseconds