HomeSort by: relevance | last modified time | path
    Searched refs:BreakScope (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
Scope.cpp 65 if (flags & BreakScope) BreakParent = this;
108 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 &&
110 if (FlagsToSet & BreakScope) {
111 assert((Flags & BreakScope) == 0 && "Already set");
147 {BreakScope, "BreakScope"},
SemaExpr.cpp 13174 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope
13175 : Scope::ContinueScope | Scope::BreakScope;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Scope.h 51 BreakScope = 0x02,
178 /// BreakScope/ContinueScope which contains the contents of this scope
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 1565 getCurScope()->AddFlags(Scope::BreakScope);
1614 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1617 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1670 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope;
1672 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1988 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope);
2004 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope);
ParseExprCXX.cpp 1951 S->AddFlags(Scope::BreakScope | Scope::ContinueScope);

Completed in 64 milliseconds