Searched refs:m_type_hash_to_unit_index (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfo.cpp92 m_type_hash_to_unit_index.emplace_back(type_unit->GetTypeHash(),
104 llvm::sort(m_type_hash_to_unit_index, llvm::less_first());
166 auto pos = llvm::lower_bound(m_type_hash_to_unit_index,
168 if (pos == m_type_hash_to_unit_index.end() || pos->first != hash)
175 return !m_type_hash_to_unit_index.empty();
H A DDWARFDebugInfo.h68 std::vector<std::pair<uint64_t, uint32_t>> m_type_hash_to_unit_index; member in class:DWARFDebugInfo

Completed in 106 milliseconds