/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | NodeVector.java | 45 private int m_map[]; field in NodeVector 91 if ((null != this.m_map) && (this.m_map == clone.m_map)) in clone() 93 clone.m_map = new int[this.m_map.length]; in clone() 95 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length); in clone() 121 if (null == m_map) in addElement() 123 m_map = new int[m_blocksize]; in addElement() 132 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 134 m_map = newMap; in addElement() 138 m_map[m_firstFree] = value; in addElement() 155 if (null == m_map) in push() [all …]
|
D | ObjectVector.java | 40 protected Object m_map[]; field in ObjectVector 57 m_map = new Object[m_blocksize]; in ObjectVector() 70 m_map = new Object[blocksize]; in ObjectVector() 83 m_map = new Object[blocksize]; in ObjectVector() 93 m_map = new Object[v.m_mapSize]; in ObjectVector() 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree); in ObjectVector() 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 137 m_map = newMap; in addElement() 140 m_map[m_firstFree] = value; in addElement() 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() [all …]
|
D | IntVector.java | 40 protected int m_map[]; // IntStack is trying to see this directly field in IntVector 57 m_map = new int[m_blocksize]; in IntVector() 70 m_map = new int[blocksize]; in IntVector() 83 m_map = new int[blocksize]; in IntVector() 93 m_map = new int[v.m_mapSize]; in IntVector() 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree); in IntVector() 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 137 m_map = newMap; in addElement() 140 m_map[m_firstFree] = value; in addElement() 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() [all …]
|
D | SuballocatedIntVector.java | 58 protected int m_map[][]; field in SuballocatedIntVector 102 m_map = new int[numblocks][]; in SuballocatedIntVector() 103 m_map[0]=m_map0; in SuballocatedIntVector() 164 if(index>=m_map.length) in addElement() 168 System.arraycopy(m_map, 0, newMap, 0, m_map.length); in addElement() 169 m_map=newMap; in addElement() 171 int[] block=m_map[index]; in addElement() 173 block=m_map[index]=new int[m_blocksize]; in addElement() 204 if(index>=m_map.length) in addElements() 208 System.arraycopy(m_map, 0, newMap, 0, m_map.length); in addElements() [all …]
|
D | StringVector.java | 36 protected String m_map[]; field in StringVector 53 m_map = new String[m_blocksize]; in StringVector() 66 m_map = new String[blocksize]; in StringVector() 103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 105 m_map = newMap; in addElement() 108 m_map[m_firstFree] = value; in addElement() 122 return m_map[i]; in elementAt() 140 if (m_map[i].equals(s)) in contains() 162 if (m_map[i].equalsIgnoreCase(s)) in containsIgnoreCase() 183 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push() [all …]
|
D | StringToIntTable.java | 38 private String m_map[]; field in StringToIntTable 59 m_map = new String[m_blocksize]; in StringToIntTable() 73 m_map = new String[blocksize]; in StringToIntTable() 102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in put() 104 m_map = newMap; in put() 113 m_map[m_firstFree] = key; in put() 132 if (m_map[i].equals(key)) in get() 154 if (m_map[i].equalsIgnoreCase(key)) in getIgnoreCase() 173 if (m_map[i].equals(key)) in contains() 191 keysArr[i] = m_map[i]; in keys()
|
D | ObjectStack.java | 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push() 83 m_map = newMap; in push() 86 m_map[m_firstFree] = i; in push() 101 Object val = m_map[--m_firstFree]; in pop() 102 m_map[m_firstFree] = null; in pop() 126 return m_map[m_firstFree - 1]; in peek() 144 return m_map[m_firstFree-(1+n)]; in peek() 162 m_map[m_firstFree - 1] = val; in setTop()
|
D | IntStack.java | 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push() 83 m_map = newMap; in push() 86 m_map[m_firstFree] = i; in push() 101 return m_map[--m_firstFree]; in pop() 123 return m_map[m_firstFree - 1]; in peek() 141 return m_map[m_firstFree-(1+n)]; in peek() 159 m_map[m_firstFree - 1] = val; in setTop()
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | UniqueCStringMap.h | 43 m_map.push_back(typename UniqueCStringMap<T>::Entry(unique_cstr, value)); in Append() 46 void Append(const Entry &e) { m_map.push_back(e); } in Append() 48 void Clear() { m_map.clear(); } in Clear() 55 if (idx < m_map.size()) { in GetValueAtIndex() 56 value = m_map[idx].value; in GetValueAtIndex() 63 return m_map[idx].cstring; in GetCStringAtIndexUnchecked() 68 T GetValueAtIndexUnchecked(uint32_t idx) const { return m_map[idx].value; } in GetValueAtIndexUnchecked() 73 return m_map[idx].value; in GetValueRefAtIndexUnchecked() 77 return ((idx < m_map.size()) ? m_map[idx].cstring : ConstString()); in GetCStringAtIndex() 87 auto pos = llvm::lower_bound(m_map, unique_cstr, Compare()); in Find() [all …]
|
D | ThreadSafeDenseMap.h | 27 : m_map(map_initial_capacity), m_mutex() {} in m_map() function 31 m_map.insert(std::make_pair(k, v)); in Insert() 36 m_map.erase(k); in Erase() 41 return m_map.lookup(k); in Lookup() 46 auto iter = m_map.find(k), end = m_map.end(); in Lookup() 55 m_map.clear(); in Clear() 59 LLVMMapType m_map;
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | NodeSet.java | 828 Node m_map[]; field in NodeSet 850 if ((null != this.m_map) && (this.m_map == clone.m_map)) in clone() 852 clone.m_map = new Node[this.m_map.length]; in clone() 854 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length); in clone() 882 if (null == m_map) in addElement() 884 m_map = new Node[m_blocksize]; in addElement() 893 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 895 m_map = newMap; in addElement() 899 m_map[m_firstFree] = value; in addElement() 916 if (null == m_map) in push() [all …]
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | NameToDIE.cpp | 21 m_map.Sort(); in Finalize() 22 m_map.SizeToFit(); in Finalize() 26 m_map.Append(name, die_ref); in Insert() 31 for (const auto &entry : m_map.equal_range(name)) in Find() 39 for (const auto &entry : m_map) in Find() 50 const uint32_t size = m_map.GetSize(); in FindAllEntriesForUnit() 52 const DIERef &die_ref = m_map.GetValueAtIndexUnchecked(i); in FindAllEntriesForUnit() 64 const uint32_t size = m_map.GetSize(); in Dump() 66 s->Format("{0} \"{1}\"\n", m_map.GetValueAtIndexUnchecked(i), in Dump() 67 m_map.GetCStringAtIndexUnchecked(i)); in Dump() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | OpMapVector.java | 37 protected int m_map[]; // IntStack is trying to see this directly field in OpMapVector 56 m_map = new int[blocksize]; in OpMapVector() 68 return m_map[i]; in elementAt() 91 System.arraycopy(m_map, 0, newMap, 0, oldSize); in setElementAt() 93 m_map = newMap; in setElementAt() 96 m_map[index] = value; in setElementAt() 109 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]); in setToSize() 112 m_map = newMap; in setToSize()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
D | StringToIntTable.java | 45 private String m_map[]; field in StringToIntTable 66 m_map = new String[m_blocksize]; in StringToIntTable() 80 m_map = new String[blocksize]; in StringToIntTable() 109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in put() 111 m_map = newMap; in put() 120 m_map[m_firstFree] = key; in put() 139 if (m_map[i].equals(key)) in get() 161 if (m_map[i].equalsIgnoreCase(key)) in getIgnoreCase() 180 if (m_map[i].equals(key)) in contains() 198 keysArr[i] = m_map[i]; in keys()
|
/external/testng/src/main/java/org/testng/internal/ |
D | ResultMap.java | 20 private Map<ITestResult, ITestNGMethod> m_map = new ConcurrentHashMap<>(); field in ResultMap 24 m_map.put(result, method); in addResult() 31 for (Map.Entry<ITestResult, ITestNGMethod> entry : m_map.entrySet()) { in getResults() 42 for (Entry<ITestResult, ITestNGMethod> entry : m_map.entrySet()) { in removeResult() 44 m_map.remove(entry.getKey()); in removeResult() 52 m_map.remove(r); in removeResult() 57 return m_map.keySet(); in getAllResults() 62 return m_map.size(); in size() 67 return m_map.values(); in getAllMethods() 73 .add("map", m_map) in toString()
|
D | ClassInfoMap.java | 11 private Map<Class<?>, XmlClass> m_map = Maps.newLinkedHashMap(); field in ClassInfoMap 38 m_map.put(cl, xmlClass); in registerClass() 41 if (! m_map.containsKey(c)) registerClass(c, xmlClass); in registerClass() 47 m_map.put(cls, null); in addClass() 51 return m_map.get(cls); in getXmlClass() 55 m_map.put(cls, xmlClass); in put() 59 return m_map.keySet(); in getClasses() 63 return m_map.size(); in getSize()
|
D | SuiteRunnerMap.java | 13 private Map<String, ISuite> m_map = Maps.newHashMap(); field in SuiteRunnerMap 17 if (m_map.containsKey(name)) { in put() 20 m_map.put(name, suite); in put() 24 return m_map.get(xmlSuite.getName()); in get() 28 return m_map.values(); in values()
|
/external/llvm-project/lldb/source/DataFormatters/ |
D | TypeCategoryMap.cpp | 19 : m_map_mutex(), listener(lst), m_map(), m_active_categories() { in TypeCategoryMap() 29 m_map[name] = entry; in Add() 36 MapIterator iter = m_map.find(name); in Delete() 37 if (iter == m_map.end()) in Delete() 39 m_map.erase(name); in Delete() 96 std::vector<ValueSP> sorted_categories(m_map.size(), ValueSP()); in EnableAllCategories() 97 MapType::iterator iter = m_map.begin(), end = m_map.end(); in EnableAllCategories() 127 m_map.clear(); in Clear() 135 MapIterator iter = m_map.find(name); in Get() 136 if (iter == m_map.end()) in Get() [all …]
|
D | FormatCache.cpp | 55 auto i = m_map.find(type), e = m_map.end(); in GetEntry() 58 m_map[type] = FormatCache::Entry(); in GetEntry() 59 return m_map[type]; in GetEntry() 120 m_map.clear(); in Clear()
|
/external/llvm-project/lldb/include/lldb/DataFormatters/ |
D | FormattersContainer.h | 128 m_map.emplace_back(std::move(matcher), std::move(entry)); in Add() 135 for (auto iter = m_map.begin(); iter != m_map.end(); ++iter) in Delete() 137 m_map.erase(iter); in Delete() 147 for (auto &formatter : llvm::reverse(m_map)) { in Get() 158 for (const auto &pos : m_map) in GetExact() 168 if (index >= m_map.size()) in GetAtIndex() 170 return m_map[index].second; in GetAtIndex() 175 if (index >= m_map.size()) in GetTypeNameSpecifierAtIndex() 177 TypeMatcher type_matcher = m_map[index].first; in GetTypeNameSpecifierAtIndex() 184 m_map.clear(); in Clear() [all …]
|
D | TypeCategoryMap.h | 78 uint32_t GetCount() { return m_map.size(); } in GetCount() 98 MapType m_map; variable 101 MapType &map() { return m_map; } in map()
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_valuepool.h | 45 m_map[idx] = v; in insert() 49 auto v = m_map.find(idx); in get_or_inject() 50 if (v == m_map.end()) { in get_or_inject() 52 v = m_map.find(idx); in get_or_inject() 56 std::map<uint32_t, PValue>::const_iterator begin() const {return m_map.begin();} in begin() 57 std::map<uint32_t, PValue>::const_iterator end() const {return m_map.end();} in end() 63 std::map<uint32_t, PValue> m_map; variable
|
D | sfn_instruction_base.cpp | 39 m_map(m), in ValueRemapper() 62 m_map[range_start++].used = true; in remap() 76 auto& ns_idx = m_map[v.reg_i(i)->sel()]; in remap() 79 m_map[v.reg_i(i)->sel()].used = true; in remap() 86 auto new_index = m_map[reg->sel()]; in remap_one_registers() 89 m_map[reg->sel()].used = true; in remap_one_registers()
|
/external/llvm-project/lldb/source/Symbol/ |
D | TypeSystem.cpp | 182 : m_mutex(), m_map(), m_clear_in_progress(false) {} in TypeSystemMap() 190 map = m_map; in Clear() 204 m_map.clear(); in Clear() 214 for (auto pair : m_map) { in ForEach() 235 collection::iterator pos = m_map.find(language); in GetTypeSystemForLanguage() 236 if (pos != m_map.end()) { in GetTypeSystemForLanguage() 250 for (const auto &pair : m_map) { in GetTypeSystemForLanguage() 254 m_map[language] = pair.second; in GetTypeSystemForLanguage() 277 m_map[language] = type_system_sp; in GetTypeSystemForLanguage()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | ChunkedIntArray.java | 271 int[] m_map[] = new int[BLOCKSIZE][]; field in ChunkedIntArray.ChunksVector 292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize); in addElement() 293 m_map = newMap; in addElement() 297 m_map[pos] = value; in addElement() 303 return m_map[pos]; in elementAt()
|