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

References

tools/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
   31   OS << "  {";
   34   OS << "\"" << Property->getValueAsString("Name") << "\"";
   35   OS << ", ";
   38   OS << "OptionValue::eType";
   39   OS << Property->getValueAsString("Type");
   40   OS << ", ";
   43   OS << (Property->getValue("Global") ? "true" : "false");
   44   OS << ", ";
   77     OS << std::to_string(Property->getValueAsInt("DefaultUnsignedValue"));
   79     OS << Property->getValueAsString("DefaultEnumValue");
   81     OS << "0";
   83   OS << ", ";
   88       OS << "\"";
   89       OS << D->getValue()->getAsUnquotedString();
   90       OS << "\"";
   92       OS << "\"\"";
   95     OS << "nullptr";
   97   OS << ", ";
  101     OS << Property->getValueAsString("EnumValues");
  103     OS << "{}";
  104   OS << ", ";
  108     OS << "\"";
  109     OS << D->getValue()->getAsUnquotedString();
  110     OS << "\"";
  112     OS << "\"\"";
  115   OS << "},\n";