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

/external/clang/lib/Sema/
H A DScope.cpp63 if (flags & BreakScope) BreakParent = this;
102 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 &&
104 if (FlagsToSet & BreakScope) {
105 assert((Flags & BreakScope) == 0 && "Already set");
143 } else if (Flags & BreakScope) {
144 OS << "BreakScope";
145 Flags &= ~BreakScope;
/external/clang/include/clang/Sema/
H A DScope.h49 BreakScope = 0x02, enumerator in enum:clang::Scope::ScopeFlags
152 /// BreakScope/ContinueScope which contains the contents of this scope
/external/clang/lib/Parse/
H A DParseStmt.cpp1251 getCurScope()->AddFlags(Scope::BreakScope);
1300 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 143 milliseconds