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

References

tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
   47           data.GetMaxU64(offset_ptr, DWARFUnit::GetAddressByteSize(m_unit));
   50       m_value.value.uval = data.GetU8(offset_ptr);
   54       m_value.value.uval = data.GetU16(offset_ptr);
   58       m_value.value.uval = data.GetU32(offset_ptr);
   67       m_value.value.uval = data.GetULEB128(offset_ptr);
   71       m_value.value.cstr = data.GetCStr(offset_ptr);
   74       m_value.value.sval = data.GetSLEB128(offset_ptr);
   79       m_value.value.uval = data.GetMaxU64(offset_ptr, 4);
   86       m_value.value.uval = data.GetU8(offset_ptr);
   92       m_value.value.uval = data.GetU16(offset_ptr);
   96       m_value.value.uval = data.GetMaxU64(offset_ptr, 3);
  102       m_value.value.uval = data.GetU32(offset_ptr);
  107       m_value.value.uval = data.GetU64(offset_ptr);
  116       m_value.value.uval = data.GetULEB128(offset_ptr);
  124       m_value.value.uval = data.GetMaxU64(offset_ptr, ref_addr_size);
  127       m_form = data.GetULEB128(offset_ptr);
  139     m_value.data = data.PeekData(*offset_ptr, m_value.value.uval);
  141       *offset_ptr += m_value.value.uval;