Home
last modified time | relevance | path

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

/external/lldb/include/lldb/Core/
DUniqueCStringMap.h165 Entry search_entry (unique_cstr); in Find()
167 const_iterator pos = std::lower_bound (m_map.begin(), end, search_entry); in Find()
185 Entry search_entry (unique_cstr); in FindFirstValueForName()
187 const_iterator pos = std::lower_bound (m_map.begin(), end, search_entry); in FindFirstValueForName()
227 Entry search_entry (unique_cstr); in GetValues()
229 for (pos = std::lower_bound (m_map.begin(), end, search_entry); pos != end; ++pos) in GetValues()
326 Entry search_entry (unique_cstr); in Erase()
329 iterator lower_pos = std::lower_bound (begin, end, search_entry); in Erase()
334 iterator upper_pos = std::upper_bound (lower_pos, end, search_entry); in Erase()
/external/lldb/source/Symbol/
DLineTable.cpp193 Entry search_entry; in FindLineEntryByAddress() local
194 search_entry.file_addr = so_addr.GetFileAddress(); in FindLineEntryByAddress()
195 if (search_entry.file_addr != LLDB_INVALID_ADDRESS) in FindLineEntryByAddress()
199 …entry_collection::const_iterator pos = lower_bound(begin_pos, end_pos, search_entry, Entry::EntryA… in FindLineEntryByAddress()
204 if (pos->file_addr != search_entry.file_addr) in FindLineEntryByAddress()
206 else if (pos->file_addr == search_entry.file_addr) in FindLineEntryByAddress()
220 if (pos->file_addr != search_entry.file_addr) in FindLineEntryByAddress()
233 if (prev_pos->file_addr == search_entry.file_addr && in FindLineEntryByAddress()