Lines Matching defs:attr

50 DWARFDebugInfoEntry::Attributes::FindAttributeIndex(dw_attr_t attr) const
57 if (pos->attr == attr)
64 DWARFDebugInfoEntry::Attributes::Append(const DWARFCompileUnit *cu, dw_offset_t attr_die_offset, dw_attr_t attr, dw_form_t form)
66 Info info = { cu, attr_die_offset, attr, form };
71 DWARFDebugInfoEntry::Attributes::ContainsAttribute(dw_attr_t attr) const
73 return FindAttributeIndex(attr) != UINT32_MAX;
77 DWARFDebugInfoEntry::Attributes::RemoveAttribute(dw_attr_t attr)
79 uint32_t attr_index = FindAttributeIndex(attr);
97 DWARFDebugInfoEntry::Attributes::FormValueAsUnsigned (SymbolFileDWARF* dwarf2Data, dw_attr_t attr, uint64_t fail_value) const
99 const uint32_t attr_idx = FindAttributeIndex (attr);
314 dw_attr_t attr;
318 abbrevDecl->GetAttrAndFormByIndexUnchecked(i, attr, form);
320 if (isCompileUnitTag && ((attr == DW_AT_entry_pc) || (attr == DW_AT_low_pc)))
325 if (attr == DW_AT_low_pc || attr == DW_AT_entry_pc)
777 dw_attr_t attr;
783 abbrevDecl->GetAttrAndFormByIndexUnchecked(i, attr, form);
787 switch (attr)
989 dw_attr_t attr;
993 abbrevDecl->GetAttrAndFormByIndexUnchecked(i, attr, form);
995 DumpAttribute(dwarf2Data, cu, debug_info_data, &offset, s, attr, form);
1061 dw_attr_t attr,
1073 s.Indent(DW_AT_value_to_name(attr));
1105 switch (attr)
1233 dw_attr_t attr;
1238 abbrevDecl->GetAttrAndFormByIndexUnchecked (i, attr, form);
1243 switch (attr)
1256 attributes.Append(cu, offset, attr, form);
1260 if ((attr == DW_AT_specification) || (attr == DW_AT_abstract_origin))
1313 const dw_attr_t attr,
1323 uint32_t attr_idx = abbrevDecl->FindAttributeIndex(attr);
1360 const dw_attr_t attr,
1364 if (GetAttributeValue(dwarf2Data, cu, attr, form_value))
1379 const dw_attr_t attr,
1384 if (GetAttributeValue(dwarf2Data, cu, attr, form_value))
1399 const dw_attr_t attr,
1404 if (GetAttributeValue(dwarf2Data, cu, attr, form_value))
1420 const dw_attr_t attr,
1425 if (GetAttributeValue(dwarf2Data, cu, attr, form_value))
1499 const dw_attr_t attr,
1510 const dw_offset_t attr_offset = GetAttributeValue(dwarf2Data, cu, attr, form_value, &end_addr_offset);