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

References

tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
  336     s.Address(uvalue, sizeof(uint64_t));
  340     s.PutHex8(uvalue);
  343     s.PutHex16(uvalue);
  347     s.PutHex32(uvalue);
  351     s.PutHex64(uvalue);
  354     s.QuotedCString(AsCString());
  365         s.Printf("<0x%" PRIx64 "> ", uvalue);
  368         s.Printf("<0x%2.2x> ", (uint8_t)uvalue);
  371         s.Printf("<0x%4.4x> ", (uint16_t)uvalue);
  374         s.Printf("<0x%8.8x> ", (uint32_t)uvalue);
  385           s.Printf("%2.2x ", *data_ptr);
  389         s.PutCString("NULL");
  394     s.PutSLEB128(uvalue);
  397     s.PutULEB128(uvalue);
  402       s.QuotedCString(dbg_str);
  404       s.PutHex32(uvalue);
  412       s.Address(uvalue, sizeof(uint64_t) * 2);
  414       s.Address(uvalue, 4 * 2); // 4 for DWARF32, 8 for DWARF64, but we don't
  437     s.PutCString("DW_FORM_indirect");
  442     s.Printf("DW_FORM(0x%4.4x)", m_form);
  449     s.Printf("{0x%8.8" PRIx64 "}", uvalue + m_unit->GetOffset());