Lines Matching defs:file_index
22 /// - file_index: identifies the separate stand alone debug info file
34 DIERef(std::optional<uint32_t> file_index, Section section,
36 : m_die_offset(die_offset), m_file_index(file_index.value_or(0)),
37 m_file_index_valid(file_index ? true : false), m_section(section) {
38 assert(this->file_index() == file_index && "File Index is out of range?");
55 return lldb::user_id_t(file_index().value_or(0)) << k_die_offset_bit_size |
60 std::optional<uint32_t> file_index() const {
81 return file_index() == rhs.file_index() && m_section == rhs.m_section &&