Home
last modified time | relevance | path

Searched refs:m_entries (Results 1 – 15 of 15) sorted by relevance

/external/lldb/include/lldb/Core/
DRangeMap.h179 m_entries () in RangeArray()
190 m_entries.push_back (entry); in Append()
196 if (idx < m_entries.size()) in RemoveEntrtAtIndex()
198 m_entries.erase (m_entries.begin() + idx); in RemoveEntrtAtIndex()
207 if (m_entries.size() > 1) in Sort()
208 std::stable_sort (m_entries.begin(), m_entries.end()); in Sort()
218 … for (pos = m_entries.begin(), end = m_entries.end(), prev = end; pos != end; prev = pos++) in IsSorted()
233 if (m_entries.size() > 1) in CombineConsecutiveRanges()
242 … for (pos = m_entries.begin(), end = m_entries.end(), prev = end; pos != end; prev = pos++) in CombineConsecutiveRanges()
256 … for (pos = m_entries.begin(), end = m_entries.end(), prev = end; pos != end; prev = pos++) in CombineConsecutiveRanges()
[all …]
DMappedHash.h216 m_entries.push_back (entry); in AddEntry()
223 if (m_entries.empty()) in Save()
226 const uint32_t num_entries = m_entries.size(); in Save()
244 unique_hashes[i] = m_entries[i].hash; in Save()
271 const uint32_t hash = m_entries[i].hash; in Save()
273 const uint32_t strp_offset = m_entries[i].str_offset; in Save()
274 const uint32_t die_offset = m_entries[i].die_offset; in Save()
350 collection m_entries; variable
/external/lldb/source/Symbol/
DLineTable.cpp26 m_entries() in LineTable()
53 entry_collection::iterator begin_pos = m_entries.begin(); in InsertLineEntry()
54 entry_collection::iterator end_pos = m_entries.end(); in InsertLineEntry()
61 m_entries.insert(pos, entry); in InsertLineEntry()
73 m_entries.clear(); in Clear()
99 seq->m_entries.push_back (entry); in AppendLineEntryToSequence()
107 if (seq->m_entries.empty()) in InsertSequence()
109 Entry& entry = seq->m_entries.front(); in InsertSequence()
113 if (m_entries.empty() || !Entry::EntryAddressLessThan(entry, m_entries.back())) in InsertSequence()
115 m_entries.insert(m_entries.end(), in InsertSequence()
[all …]
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDeclContext.cpp23 if (!m_entries.empty()) in GetQualifiedName()
25 if (m_entries.size() == 1) in GetQualifiedName()
27 if (m_entries[0].name) in GetQualifiedName()
30 m_qualified_name.append(m_entries[0].name); in GetQualifiedName()
36 collection::const_reverse_iterator begin = m_entries.rbegin(); in GetQualifiedName()
37 collection::const_reverse_iterator end = m_entries.rend(); in GetQualifiedName()
70 if (m_entries.size() != rhs.m_entries.size()) in operator ==()
74 collection::const_iterator begin = m_entries.begin(); in operator ==()
75 collection::const_iterator end = m_entries.end(); in operator ==()
78 collection::const_iterator rhs_begin = rhs.m_entries.begin(); in operator ==()
DDWARFDeclContext.h67 m_entries() in DWARFDeclContext()
74 m_entries.push_back(Entry(tag, name)); in AppendDeclContext()
83 return m_entries.size(); in GetSize()
90 return m_entries[idx];
97 return m_entries[idx];
105 collection m_entries; variable
/external/lldb/examples/darwin/heap_find/heap/
Dheap_find.cpp258 bzero (&m_entries, sizeof(m_entries)); in clear()
275 … if (((uint8_t *)m_entries[i].addr + m_entries[i].offset) == ((uint8_t *)m.addr + m.offset)) in push_back()
281 m_entries[m_size] = m; in push_back()
295 m_entries[m_size] = terminator_entry; in data()
296 return m_entries; in data()
300 malloc_match m_entries[k_max_entries]; member in MatchResults
331 malloc_stack_entry * result = m_entries + m_size; in next()
345 m_entries[m_size].address = NULL; in data()
346 m_entries[m_size].argument = 0; in data()
347 m_entries[m_size].type_flags = 0; in data()
[all …]
/external/lldb/source/Interpreter/
DCommandObjectRegexCommand.cpp39 m_entries () in CommandObjectRegexCommand()
60 EntryCollection::const_iterator pos, end = m_entries.end(); in DoExecute()
61 for (pos = m_entries.begin(); pos != end; ++pos) in DoExecute()
110 m_entries.resize(m_entries.size() + 1); in AddRegexCommand()
112 if (m_entries.back().regex.Compile (re_cstr, REG_EXTENDED)) in AddRegexCommand()
114 m_entries.back().command.assign (command_cstr); in AddRegexCommand()
118 m_entries.pop_back(); in AddRegexCommand()
/external/deqp/framework/randomshaders/
DrsgVariableManager.cpp155 for (vector<ValueEntry*>::iterator i = m_entries.begin(); i != m_entries.end(); i++) in clear()
157 m_entries.clear(); in clear()
165 m_entries.push_back(entry); in allocate()
199 …vector<ValueEntry*>::const_iterator pos = std::find(m_entries.begin(), m_entries.end(), CompareEnt… in findEntry()
200 return pos != m_entries.end() ? *pos : DE_NULL; in findEntry()
215 …vector<ValueEntry*>::iterator pos = std::find(m_entries.begin(), m_entries.end(), CompareEntryVari… in removeValue()
216 if (pos != m_entries.end()) in removeValue()
219 m_entries.erase(pos); in removeValue()
DrsgVariableManager.hpp94 std::vector<ValueEntry*>& getValues (void) { return m_entries; } in getValues()
95 const std::vector<ValueEntry*>& getValues (void) const { return m_entries; } in getValues()
103 std::vector<ValueEntry*> m_entries; member in rsg::ValueScope
/external/lldb/include/lldb/Interpreter/
DCommandObjectRegexCommand.h48 return !m_entries.empty(); in HasRegexEntries()
73 EntryCollection m_entries; variable
/external/libvpx/libwebm/
Dmkvparser.cpp1673 m_entries(0), in SeekHead()
1679 delete[] m_entries; in ~SeekHead()
1713 m_entries = new (std::nothrow) Entry[entry_count]; in Parse()
1715 if (m_entries == NULL) in Parse()
1725 Entry* pEntry = m_entries; in Parse()
1760 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse()
1784 return m_entries + idx; in GetEntry()
6433 const BlockEntry* const pLast = m_entries[idx]; in Parse()
6833 assert(m_entries); in GetEntry()
6838 pEntry = m_entries[index]; in GetEntry()
[all …]
Dmkvparser.hpp662 Entry* m_entries; member in mkvparser::SeekHead
829 mutable BlockEntry** m_entries; member in mkvparser::Cluster
/external/libvpx/libvpx/third_party/libwebm/
Dmkvparser.cpp1671 m_entries(0), in SeekHead()
1677 delete[] m_entries; in ~SeekHead()
1711 m_entries = new (std::nothrow) Entry[entry_count]; in Parse()
1713 if (m_entries == NULL) in Parse()
1723 Entry* pEntry = m_entries; in Parse()
1758 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse()
1782 return m_entries + idx; in GetEntry()
6430 const BlockEntry* const pLast = m_entries[idx]; in Parse()
6835 assert(m_entries); in GetEntry()
6840 pEntry = m_entries[index]; in GetEntry()
[all …]
Dmkvparser.hpp662 Entry* m_entries; member in mkvparser::SeekHead
829 mutable BlockEntry** m_entries; member in mkvparser::Cluster
/external/lldb/include/lldb/Symbol/
DLineTable.h391 entry_collection m_entries; ///< The collection of line entries in this line table. variable
410 entry_collection m_entries; ///< The collection of line entries in this sequence. variable