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

References

tools/clang/utils/TableGen/ClangAttrEmitter.cpp
  931       OS << "    OS << \"\\\"\" << " << getAttrName() << "Attr::Convert" << type
  943       QualifiedTypeName = getAttrName().str() + "Attr::" + type;
  957       OS << "  enum " << type << " {\n";
 1001       OS << "  static bool ConvertStrTo" << type << "(StringRef Val, ";
 1002       OS << type << " &Out) {\n";
 1003       OS << "    Optional<" << type << "> R = llvm::StringSwitch<Optional<";
 1004       OS << type << ">>(Val)\n";
 1009       OS << "      .Default(Optional<" << type << ">());\n";
 1015       OS << "  static const char *Convert" << type << "ToStr("
 1016         << type << " Val) {\n"