Home
last modified time | relevance | path

Searched refs:insert_pos (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDIECollection.cpp25 iterator insert_pos = upper_bound(m_dies.begin(), end_pos, die); in Insert() local
26 if (insert_pos != end_pos && (*insert_pos == die)) in Insert()
28 m_dies.insert(insert_pos, die); in Insert()
/external/lldb/source/Symbol/
DUnwindTable.cpp81 iterator insert_pos = end; in GetFuncUnwindersContainingAddress() local
84 insert_pos = m_unwinds.lower_bound (file_addr); in GetFuncUnwindersContainingAddress()
85 iterator pos = insert_pos; in GetFuncUnwindersContainingAddress()
104 …m_unwinds.insert (insert_pos, std::make_pair(range.GetBaseAddress().GetFileAddress(), func_unwinde… in GetFuncUnwindersContainingAddress()