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

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

Completed in 122 milliseconds