HomeSort by relevance Sort by last modified time
    Searched full:abbrcode (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/DebugInfo/
DWARFDebugAbbrev.cpp 54 uint32_t AbbrCode) const {
57 if (Decl.getCode() == AbbrCode)
62 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size())
64 return &Decls[AbbrCode - FirstAbbrCode];
DWARFDebugInfoEntry.cpp 30 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
33 if (abbrCode) {
40 OS << format(" [%u] %c\n", abbrCode,
57 << abbrCode << '\n';
100 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr);
101 if (0 == AbbrCode) {
106 AbbrevDecl = U->getAbbreviations()->getAbbreviationDeclaration(AbbrCode);
DWARFDebugAbbrev.h 35 getAbbreviationDeclaration(uint32_t AbbrCode) const;
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugAbbrev.h 50 const DWARFAbbreviationDeclaration* GetAbbreviationDeclaration(dw_uleb128_t abbrCode) const;
DWARFDebugAbbrev.cpp 70 DWARFAbbreviationDeclarationSet::GetAbbreviationDeclaration(dw_uleb128_t abbrCode) const
78 if (pos->Code() == abbrCode)
84 uint32_t idx = abbrCode - m_idx_offset;
DWARFDebugInfoEntry.cpp     [all...]

Completed in 76 milliseconds