/external/llvm-project/lldb/include/lldb/Utility/ |
D | RangeMap.h | 136 void Append(const Entry &entry) { m_entries.push_back(entry); } in Append() 138 void Append(B base, S size) { m_entries.emplace_back(base, size); } in Append() 143 if (m_entries.empty()) { in Insert() 144 m_entries.push_back(entry); in Insert() 147 auto begin = m_entries.begin(); in Insert() 148 auto end = m_entries.end(); in Insert() 163 m_entries.insert(pos, entry); in Insert() 167 if (idx < m_entries.size()) { in RemoveEntryAtIndex() 168 m_entries.erase(m_entries.begin() + idx); in RemoveEntryAtIndex() 175 if (m_entries.size() > 1) in Sort() [all …]
|
D | Args.h | 129 llvm::ArrayRef<ArgEntry> entries() const { return m_entries; } 133 const_iterator begin() const { return m_entries.begin(); } 134 const_iterator end() const { return m_entries.end(); } 137 const ArgEntry &operator[](size_t n) const { return m_entries[n]; } 292 std::vector<ArgEntry> m_entries;
|
/external/llvm-project/lldb/source/Symbol/ |
D | LineTable.cpp | 22 : m_comp_unit(comp_unit), m_entries() {} in LineTable() 26 : m_comp_unit(comp_unit), m_entries() { in LineTable() 31 m_entries.insert(m_entries.end(), seq->m_entries.begin(), in LineTable() 32 seq->m_entries.end()); in LineTable() 51 llvm::upper_bound(m_entries, entry, less_than_bp); in InsertLineEntry() 56 m_entries.insert(pos, entry); in InsertLineEntry() 63 void LineTable::LineSequenceImpl::Clear() { m_entries.clear(); } in Clear() 79 entry_collection &entries = seq->m_entries; in AppendLineEntryToSequence() 108 if (seq->m_entries.empty()) in InsertSequence() 110 Entry &entry = seq->m_entries.front(); in InsertSequence() [all …]
|
/external/llvm-project/lldb/source/Utility/ |
D | Args.cpp | 187 m_entries.clear(); in operator =() 188 for (auto &entry : rhs.m_entries) { in operator =() 189 m_entries.emplace_back(entry.ref(), entry.quote); in operator =() 190 m_argv.push_back(m_entries.back().data()); in operator =() 204 for (auto &entry : m_entries) { in Dump() 215 for (size_t i = 0; i < m_entries.size(); ++i) { in GetCommandString() 218 command += m_entries[i].ref(); in GetCommandString() 221 return !m_entries.empty(); in GetCommandString() 227 for (size_t i = 0; i < m_entries.size(); ++i) { in GetQuotedCommandString() 231 if (m_entries[i].quote) { in GetQuotedCommandString() [all …]
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDeclContext.cpp | 19 if (!m_entries.empty()) { in GetQualifiedName() 20 if (m_entries.size() == 1) { in GetQualifiedName() 21 if (m_entries[0].name) { in GetQualifiedName() 23 m_qualified_name.append(m_entries[0].name); in GetQualifiedName() 27 collection::const_reverse_iterator begin = m_entries.rbegin(); in GetQualifiedName() 28 collection::const_reverse_iterator end = m_entries.rend(); in GetQualifiedName() 55 if (m_entries.size() != rhs.m_entries.size()) in operator ==() 59 collection::const_iterator begin = m_entries.begin(); in operator ==() 60 collection::const_iterator end = m_entries.end(); in operator ==() 63 collection::const_iterator rhs_begin = rhs.m_entries.begin(); in operator ==()
|
D | DWARFDeclContext.h | 44 DWARFDeclContext() : m_entries(), m_language(lldb::eLanguageTypeUnknown) {} in DWARFDeclContext() 47 m_entries.push_back(Entry(tag, name)); in AppendDeclContext() 53 uint32_t GetSize() const { return m_entries.size(); } in GetSize() 57 return m_entries[idx]; 62 return m_entries[idx]; 74 m_entries.clear(); in Clear() 84 collection m_entries; variable
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectRegexCommand.cpp | 23 m_entries(), m_is_removable(is_removable) {} in CommandObjectRegexCommand() 30 EntryCollection::const_iterator pos, end = m_entries.end(); in DoExecute() 31 for (pos = m_entries.begin(); pos != end; ++pos) { in DoExecute() 73 m_entries.resize(m_entries.size() + 1); in AddRegexCommand() 75 m_entries.back().regex = RegularExpression(re_cstr); in AddRegexCommand() 76 if (m_entries.back().regex.IsValid()) { in AddRegexCommand() 77 m_entries.back().command = command_cstr.str(); in AddRegexCommand() 81 m_entries.pop_back(); in AddRegexCommand()
|
D | CommandObjectRegexCommand.h | 35 bool HasRegexEntries() const { return !m_entries.empty(); } in HasRegexEntries() 50 EntryCollection m_entries; variable
|
/external/llvm-project/lldb/examples/darwin/heap_find/heap/ |
D | heap_find.cpp | 213 bzero(&m_entries, sizeof(m_entries)); in clear() 222 if (((uint8_t *)m_entries[i].addr + m_entries[i].offset) == in push_back() 228 m_entries[m_size] = m; in push_back() 240 m_entries[m_size] = terminator_entry; in data() 241 return m_entries; in data() 245 malloc_match m_entries[k_max_entries]; member in MatchResults 261 malloc_stack_entry *result = m_entries + m_size; in next() 273 m_entries[m_size].address = NULL; in data() 274 m_entries[m_size].argument = 0; in data() 275 m_entries[m_size].type_flags = 0; in data() [all …]
|
/external/deqp/framework/randomshaders/ |
D | rsgVariableManager.cpp | 155 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()
|
D | rsgVariableManager.hpp | 94 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/libwebm/mkvparser/ |
D | mkvparser.cc | 1487 m_entries(0), in SeekHead() 1493 delete[] m_entries; in ~SeekHead() 1531 m_entries = new (std::nothrow) Entry[entry_count]; in Parse() 1533 if (m_entries == NULL) in Parse() 1546 Entry* pEntry = m_entries; in Parse() 1583 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse() 1607 return m_entries + idx; in GetEntry() 6419 const BlockEntry* const pLast = m_entries[idx]; in Parse() 6763 assert(m_entries); in GetEntry() 6768 pEntry = m_entries[index]; in GetEntry() [all …]
|
D | mkvparser.h | 877 Entry* m_entries; 1036 mutable BlockEntry** m_entries; variable
|
/external/libvpx/libvpx/third_party/libwebm/mkvparser/ |
D | mkvparser.cc | 1487 m_entries(0), in SeekHead() 1493 delete[] m_entries; in ~SeekHead() 1531 m_entries = new (std::nothrow) Entry[entry_count]; in Parse() 1533 if (m_entries == NULL) in Parse() 1546 Entry* pEntry = m_entries; in Parse() 1583 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse() 1607 return m_entries + idx; in GetEntry() 6414 const BlockEntry* const pLast = m_entries[idx]; in Parse() 6758 assert(m_entries); in GetEntry() 6763 pEntry = m_entries[index]; in GetEntry() [all …]
|
D | mkvparser.h | 877 Entry* m_entries; 1036 mutable BlockEntry** m_entries; variable
|
/external/libaom/libaom/third_party/libwebm/mkvparser/ |
D | mkvparser.cc | 1487 m_entries(0), in SeekHead() 1493 delete[] m_entries; in ~SeekHead() 1531 m_entries = new (std::nothrow) Entry[entry_count]; in Parse() 1533 if (m_entries == NULL) in Parse() 1546 Entry* pEntry = m_entries; in Parse() 1583 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse() 1607 return m_entries + idx; in GetEntry() 6414 const BlockEntry* const pLast = m_entries[idx]; in Parse() 6758 assert(m_entries); in GetEntry() 6763 pEntry = m_entries[index]; in GetEntry() [all …]
|
D | mkvparser.h | 877 Entry* m_entries; 1036 mutable BlockEntry** m_entries; variable
|
/external/libvpx/libwebm/mkvparser/ |
D | mkvparser.cc | 1487 m_entries(0), in SeekHead() 1493 delete[] m_entries; in ~SeekHead() 1531 m_entries = new (std::nothrow) Entry[entry_count]; in Parse() 1533 if (m_entries == NULL) in Parse() 1546 Entry* pEntry = m_entries; in Parse() 1583 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse() 1607 return m_entries + idx; in GetEntry() 6419 const BlockEntry* const pLast = m_entries[idx]; in Parse() 6763 assert(m_entries); in GetEntry() 6768 pEntry = m_entries[index]; in GetEntry() [all …]
|
D | mkvparser.h | 877 Entry* m_entries; 1036 mutable BlockEntry** m_entries; variable
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | LineTable.h | 324 m_entries; ///< The collection of line entries in this line table. variable 336 m_entries; ///< The collection of line entries in this sequence. variable
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineSpecConstantTests.cpp | 205 …const VkSpecializationInfo* getSpecializationInfo (void) const { return m_entries.size() > 0 ? … in getSpecializationInfo() 209 std::vector<VkSpecializationMapEntry> m_entries; member in vkt::pipeline::__anon4e8bde3e0111::Specialization 219 m_entries.reserve(specConstants.size()); in Specialization() 227 m_entries.push_back(makeSpecializationMapEntry(sc.specID, offset, sc.size)); in Specialization() 232 if (m_entries.size() > 0) in Specialization() 234 m_specialization.mapEntryCount = static_cast<deUint32>(m_entries.size()); in Specialization() 235 m_specialization.pMapEntries = m_entries.data(); in Specialization()
|