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

References

tools/clang/include/clang/AST/Stmt.h
 2082   bool hasInitStorage() const { return SwitchStmtBits.HasInit; }
 2085   bool hasVarStorage() const { return SwitchStmtBits.HasVar; }
 2160   SourceLocation getSwitchLoc() const { return SwitchStmtBits.SwitchLoc; }
 2161   void setSwitchLoc(SourceLocation L) { SwitchStmtBits.SwitchLoc = L; }
 2177   void setAllEnumCasesCovered() { SwitchStmtBits.AllEnumCasesCovered = true; }
 2182     return SwitchStmtBits.AllEnumCasesCovered;
tools/clang/lib/AST/Stmt.cpp
  948   SwitchStmtBits.HasInit = HasInit;
  949   SwitchStmtBits.HasVar = HasVar;
  950   SwitchStmtBits.AllEnumCasesCovered = false;
  964   SwitchStmtBits.HasInit = HasInit;
  965   SwitchStmtBits.HasVar = HasVar;
  966   SwitchStmtBits.AllEnumCasesCovered = false;