HomeSort by relevance Sort by last modified time
    Searched refs:file_ranges (Results 1 - 3 of 3) sorted by null

  /external/lldb/source/Symbol/
LineTable.cpp 459 LineTable::GetContiguousFileAddressRanges (FileAddressRanges &file_ranges, bool append)
462 file_ranges.Clear();
463 const size_t initial_count = file_ranges.GetSize();
477 file_ranges.Append(range);
486 return file_ranges.GetSize() - initial_count;
  /external/lldb/include/lldb/Symbol/
LineTable.h 240 /// @param[out] file_ranges
245 /// If \b true, then append to \a file_ranges, otherwise clear
246 /// \a file_ranges prior to adding any ranges.
249 /// The number of address ranges added to \a file_ranges
252 GetContiguousFileAddressRanges (FileAddressRanges &file_ranges, bool append);
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFCompileUnit.cpp 414 LineTable::FileAddressRanges file_ranges; local
416 const size_t num_ranges = line_table->GetContiguousFileAddressRanges (file_ranges, append);
419 const LineTable::FileAddressRanges::Entry &range = file_ranges.GetEntryRef(idx);
    [all...]

Completed in 168 milliseconds