Lines Matching refs:abbrevDecl

139 …const DWARFAbbreviationDeclaration *abbrevDecl = cu->GetAbbreviations()->GetAbbreviationDeclaratio…  in FastExtract()  local
141 if (abbrevDecl == NULL) in FastExtract()
150 m_tag = abbrevDecl->Tag(); in FastExtract()
151 m_has_children = abbrevDecl->HasChildren(); in FastExtract()
153 const uint32_t numAttributes = abbrevDecl->NumAttributes(); in FastExtract()
158 form = abbrevDecl->GetFormByIndexUnchecked(i); in FastExtract()
300 …const DWARFAbbreviationDeclaration *abbrevDecl = cu->GetAbbreviations()->GetAbbreviationDeclaratio… in Extract() local
302 if (abbrevDecl) in Extract()
304 m_tag = abbrevDecl->Tag(); in Extract()
305 m_has_children = abbrevDecl->HasChildren(); in Extract()
312 const uint32_t numAttributes = abbrevDecl->NumAttributes(); in Extract()
318 abbrevDecl->GetAttrAndFormByIndexUnchecked(i, attr, form); in Extract()
764 …const DWARFAbbreviationDeclaration* abbrevDecl = GetAbbreviationDeclarationPtr(dwarf2Data, cu, off… in GetDIENamesAndRanges() local
766 if (abbrevDecl) in GetDIENamesAndRanges()
773 const uint32_t numAttributes = abbrevDecl->NumAttributes(); in GetDIENamesAndRanges()
781 abbrevDecl->GetAttrAndFormByIndexUnchecked(i, attr, form); in GetDIENamesAndRanges()
977 …const DWARFAbbreviationDeclaration* abbrevDecl = cu->GetAbbreviations()->GetAbbreviationDeclaratio… in Dump() local
979 if (abbrevDecl) in Dump()
981 s.PutCString(DW_TAG_value_to_name(abbrevDecl->Tag())); in Dump()
982 s.Printf( " [%u] %c\n", abbrCode, abbrevDecl->HasChildren() ? '*':' '); in Dump()
985 const uint32_t numAttributes = abbrevDecl->NumAttributes(); in Dump()
991 abbrevDecl->GetAttrAndFormByIndexUnchecked(i, attr, form); in Dump()
1220 …const DWARFAbbreviationDeclaration* abbrevDecl = GetAbbreviationDeclarationPtr(dwarf2Data, cu, off… in GetAttributes() local
1222 if (abbrevDecl) in GetAttributes()
1229 const uint32_t num_attributes = abbrevDecl->NumAttributes(); in GetAttributes()
1236 abbrevDecl->GetAttrAndFormByIndexUnchecked (i, attr, form); in GetAttributes()
1317 …const DWARFAbbreviationDeclaration* abbrevDecl = GetAbbreviationDeclarationPtr(dwarf2Data, cu, off… in GetAttributeValue() local
1319 if (abbrevDecl) in GetAttributeValue()
1321 uint32_t attr_idx = abbrevDecl->FindAttributeIndex(attr); in GetAttributeValue()
1329 … DWARFFormValue::SkipValue(abbrevDecl->GetFormByIndex(idx++), debug_info_data, &offset, cu); in GetAttributeValue()
1332 form_value.SetForm(abbrevDecl->GetFormByIndex(idx)); in GetAttributeValue()
1728 …const DWARFAbbreviationDeclaration* abbrevDecl = die.GetAbbreviationDeclarationPtr(dwarf2Data, cu,… in AppendTypeName() local
1730 if (abbrevDecl == NULL) in AppendTypeName()
1733 switch (abbrevDecl->Tag()) in AppendTypeName()
1769 switch (abbrevDecl->Tag()) in AppendTypeName()