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

References

tools/clang/include/clang/AST/Stmt.h
 1889   bool hasInitStorage() const { return IfStmtBits.HasInit; }
 1892   bool hasVarStorage() const { return IfStmtBits.HasVar; }
 1895   bool hasElseStorage() const { return IfStmtBits.HasElse; }
 1981   SourceLocation getIfLoc() const { return IfStmtBits.IfLoc; }
 1982   void setIfLoc(SourceLocation IfLoc) { IfStmtBits.IfLoc = IfLoc; }
 1995   bool isConstexpr() const { return IfStmtBits.IsConstexpr; }
 1996   void setConstexpr(bool C) { IfStmtBits.IsConstexpr = C; }
tools/clang/lib/AST/Stmt.cpp
  836   IfStmtBits.HasElse = HasElse;
  837   IfStmtBits.HasVar = HasVar;
  838   IfStmtBits.HasInit = HasInit;
  858   IfStmtBits.HasElse = HasElse;
  859   IfStmtBits.HasVar = HasVar;
  860   IfStmtBits.HasInit = HasInit;