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

References

tools/clang/lib/AST/StmtPrinter.cpp
  243   if (If->getInit())
  244     PrintInitStmt(If->getInit(), 4);
  245   if (const DeclStmt *DS = If->getConditionVariableDeclStmt())
  248     PrintExpr(If->getCond());
  251   if (auto *CS = dyn_cast<CompoundStmt>(If->getThen())) {
  254     OS << (If->getElse() ? " " : NL);
  257     PrintStmt(If->getThen());
  258     if (If->getElse()) Indent();
  261   if (Stmt *Else = If->getElse()) {
  273       PrintStmt(If->getElse());