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

References

tools/clang/include/clang/AST/Stmt.h
 2426   Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
 2431   const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
 2436   void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
tools/clang/lib/AST/Stmt.cpp
  918   SubExprs[COND] = Cond;