Home | History | Annotate | Download | only in DWARF

Lines Matching refs:form

110 DWARFFormValue::DWARFFormValue(dw_form_t form) :
111 m_form(form),
122 // Read the value for the form into value and follow and DW_FORM_indirect instances we run into
135 // Set the string value to also be the data for inlined cstr form values only
136 // so we can tell the differnence between DW_FORM_string and DW_FORM_strp form
192 DWARFFormValue::SkipValue(dw_form_t form, const DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu)
194 switch (form)
434 // the compile unit at a later time in order to work with the form
469 DWARFFormValue::IsBlockForm(const dw_form_t form)
471 switch (form)
483 DWARFFormValue::IsDataForm(const dw_form_t form)
485 switch (form)
501 dw_form_t a_form = a_value.Form();
502 dw_form_t b_form = b_value.Form();
590 assert(!"This shouldn't happen after the form has been extracted...");