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

References

tools/lldb/source/Symbol/Variable.cpp
  105   s->Printf("%p: ", static_cast<const void *>(this));
  106   s->Indent();
  107   *s << "Variable" << (const UserID &)*this;
  110     *s << ", name = \"" << m_name << "\"";
  115       *s << ", type = {" << type->GetID() << "} " << (void *)type << " (";
  116       type->DumpTypeName(s);
  117       s->PutChar(')');
  122     s->PutCString(", scope = ");
  125       s->PutCString(m_external ? "global" : "static");
  128       s->PutCString("parameter");
  131       s->PutCString("local");
  134       s->PutCString("thread local");
  137       *s << "??? (" << m_scope << ')';
  142     s->PutCString(", context = ( ");
  143     m_owner_scope->DumpSymbolContext(s);
  144     s->PutCString(" )");
  148   m_declaration.Dump(s, show_fullpaths);
  151     s->PutCString(", location = ");
  167     m_location.GetDescription(s, lldb::eDescriptionLevelBrief,
  172     s->PutCString(", external");
  175     s->PutCString(", artificial");
  177   s->EOL();