HomeSort by relevance Sort by last modified time
    Searched defs:file_idx (Results 1 - 5 of 5) sorted by null

  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugMacinfoEntry.h 51 dw_uleb128_t file_idx; member in union:DWARFDebugMacinfoEntry::__anon29114
SymbolFileDWARF.cpp 2856 uint32_t file_idx = UINT32_MAX; local
    [all...]
  /external/lldb/source/Core/
FileLineResolver.cpp 56 uint32_t file_idx = cu->GetSupportFiles().FindFileIndex(start_file_idx, m_file_spec, false); local
57 if (file_idx != UINT32_MAX)
66 while (file_idx != UINT32_MAX)
68 line_table->FineLineEntriesForFileIndex (file_idx, append, m_sc_list);
71 file_idx = cu->GetSupportFiles().FindFileIndex(file_idx + 1, m_file_spec, false);
  /external/lldb/include/lldb/Symbol/
LineTable.h 81 uint16_t file_idx,
99 uint16_t file_idx,
159 /// Finds the next line entry that has a matching \a file_idx and
166 /// @param[out] file_idx
193 uint32_t file_idx,
206 FineLineEntriesForFileIndex (uint32_t file_idx,
279 file_idx (0),
300 file_idx (_file_idx),
318 file_idx = 0;
341 SCALAR_COMPARE (lhs.file_idx, rhs.file_idx)
367 uint16_t file_idx:11, \/\/\/< The file index into CompileUnit's file table, or zero if there is no file information. member in struct:lldb_private::LineTable::Entry
    [all...]
  /external/lldb/source/Symbol/
CompileUnit.cpp 284 uint32_t file_idx = 0; local
288 file_idx = GetSupportFiles().FindFileIndex (1, *file_spec_ptr, true);
289 if (file_idx == UINT32_MAX)
299 file_idx = support_files.FindFileIndex (1, support_files.GetFileSpecAtIndex(0), full);
300 if (file_idx == UINT32_MAX)
301 file_idx = 0;
305 return line_table->FindLineEntryIndexByFileIndex (start_idx, file_idx, line, exact, line_entry_ptr);
335 uint32_t file_idx = GetSupportFiles().FindFileIndex (1, file_spec, true);
336 while (file_idx != UINT32_MAX)
338 file_indexes.push_back (file_idx);
    [all...]

Completed in 209 milliseconds