reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Parse/ParseStmt.cpp
 1413   getCurScope()->AddFlags(Scope::BreakScope);
 1462     ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
 1465     ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
 1512     ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope;
 1514     ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
 1796   getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope);
tools/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"},
tools/clang/lib/Sema/SemaExpr.cpp
12047           ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope
12048           : Scope::ContinueScope | Scope::BreakScope;