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

References

tools/clang/utils/TableGen/ClangAttrEmitter.cpp
  473       OS << "  bool is" << getUpperName() << "Dependent() const;\n";
  475       OS << "  unsigned get" << getUpperName() << "(ASTContext &Ctx) const;\n";
  477       OS << "  bool is" << getUpperName() << "Expr() const {\n";
  478       OS << "    return is" << getLowerName() << "Expr;\n";
  479       OS << "  }\n";
  481       OS << "  Expr *get" << getUpperName() << "Expr() const {\n";
  482       OS << "    assert(is" << getLowerName() << "Expr);\n";
  483       OS << "    return " << getLowerName() << "Expr;\n";
  484       OS << "  }\n";
  486       OS << "  TypeSourceInfo *get" << getUpperName() << "Type() const {\n";
  487       OS << "    assert(!is" << getLowerName() << "Expr);\n";
  488       OS << "    return " << getLowerName() << "Type;\n";
  489       OS << "  }";