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

References

tools/lldb/source/Symbol/Type.cpp
  237   s->Printf("%p: ", static_cast<void *>(this));
  238   s->Indent();
  239   *s << "Type" << static_cast<const UserID &>(*this) << ' ';
  241     *s << ", name = \"" << m_name << "\"";
  244     s->Printf(", size = %" PRIu64, m_byte_size);
  247     s->PutCString(", context = ( ");
  248     m_context->DumpSymbolContext(s);
  249     s->PutCString(" )");
  253   m_decl.Dump(s, show_fullpaths);
  256     *s << ", compiler_type = " << m_compiler_type.GetOpaqueQualType() << ' ';
  257     GetForwardCompilerType().DumpTypeDescription(s);
  259     *s << ", type_data = " << (uint64_t)m_encoding_uid;
  264       s->PutCString(" (unresolved type)");
  267       s->PutCString(" (unresolved const type)");
  270       s->PutCString(" (unresolved restrict type)");
  273       s->PutCString(" (unresolved volatile type)");
  276       s->PutCString(" (unresolved typedef)");
  279       s->PutCString(" (unresolved pointer)");
  282       s->PutCString(" (unresolved L value reference)");
  285       s->PutCString(" (unresolved R value reference)");
  288       s->PutCString(" (synthetic type)");
  296   s->EOL();