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

References

tools/clang/lib/Parse/ParseStmt.cpp
 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
   66   if (flags & ContinueScope)      ContinueParent = this;
  108   assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 &&
  114   if (FlagsToSet & ContinueScope) {
  115     assert((Flags & ContinueScope) == 0 && "Already set");
  148       {ContinueScope, "ContinueScope"},
tools/clang/lib/Sema/SemaExpr.cpp
12047           ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope
12048           : Scope::ContinueScope | Scope::BreakScope;