/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/lldb/include/lldb/Core/ |
D | UniqueCStringMap.h | 75 m_map.push_back (typename UniqueCStringMap<T>::Entry(unique_cstr, value)); in Append() 81 m_map.push_back (e); in Append() 87 m_map.clear(); in Clear() 98 m_map.insert (std::upper_bound (m_map.begin(), m_map.end(), e), e); in Insert() 104 m_map.insert (std::upper_bound (m_map.begin(), m_map.end(), e), e); in Insert() 116 if (idx < m_map.size()) in GetValueAtIndex() 118 value = m_map[idx].value; in GetValueAtIndex() 127 return m_map[idx].cstring; in GetCStringAtIndexUnchecked() 135 return m_map[idx].value; in GetValueAtIndexUnchecked() 143 return m_map[idx].value; in GetValueRefAtIndexUnchecked() [all …]
|
/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/lldb/source/Plugins/SymbolFile/DWARF/ |
D | NameToDIE.cpp | 28 m_map.Sort (); in Finalize() 29 m_map.SizeToFit (); in Finalize() 35 m_map.Append(name.GetCString(), die_offset); in Insert() 41 return m_map.GetValues (name.GetCString(), info_array); in Find() 47 return m_map.GetValues (regex, info_array); in Find() 56 const uint32_t size = m_map.GetSize(); in FindAllEntriesForCompileUnit() 59 const uint32_t die_offset = m_map.GetValueAtIndexUnchecked(i); in FindAllEntriesForCompileUnit() 69 const uint32_t size = m_map.GetSize(); in Dump() 72 const char *cstr = m_map.GetCStringAtIndex(i); in Dump() 73 s->Printf("%p: {0x%8.8x} \"%s\"\n", cstr, m_map.GetValueAtIndexUnchecked(i), cstr); in Dump() [all …]
|
D | NameToDIE.h | 27 m_map() in NameToDIE() 61 lldb_private::UniqueCStringMap<uint32_t> m_map;
|
/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/lldb/source/DataFormatters/ |
D | TypeCategoryMap.cpp | 25 m_map(), in TypeCategoryMap() 38 m_map[name] = entry; in Add() 47 MapIterator iter = m_map.find(name); in Delete() 48 if (iter == m_map.end()) in Delete() 50 m_map.erase(name); in Delete() 123 m_map.clear(); in Clear() 133 MapIterator iter = m_map.find(name); in Get() 134 if (iter == m_map.end()) in Get() 144 MapIterator iter = m_map.begin(); in Get() 145 MapIterator end = m_map.end(); in Get() [all …]
|
D | FormatCache.cpp | 109 m_map(), in FormatCache() 120 auto i = m_map.find(type), in GetEntry() 121 e = m_map.end(); in GetEntry() 124 m_map[type] = FormatCache::Entry(); in GetEntry() 125 return m_map[type]; in GetEntry() 186 m_map.clear(); in Clear()
|
/external/lldb/include/lldb/DataFormatters/ |
D | FormatNavigator.h | 117 m_map(), in FormatMap() 133 m_map[name] = entry; in Add() 142 MapIterator iter = m_map.find(name); in Delete() 143 if (iter == m_map.end()) in Delete() 145 m_map.erase(name); in Delete() 155 m_map.clear(); in Clear() 165 MapIterator iter = m_map.find(name); in Get() 166 if (iter == m_map.end()) in Get() 178 MapIterator pos, end = m_map.end(); in LoopThrough() 179 for (pos = m_map.begin(); pos != end; pos++) in LoopThrough() [all …]
|
D | TypeCategoryMap.h | 94 return m_map.size(); in GetCount() 125 MapType m_map; variable 130 return m_map; in map()
|
D | FormatCache.h | 63 CacheMap m_map; variable
|
/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()
|
/external/lldb/include/lldb/Expression/ |
D | Materializer.h | 36 m_map(NULL), in Dematerializer() 55 return m_materializer && m_map && (m_process_address != LLDB_INVALID_ADDRESS); in IsValid() 65 m_map(&map), in Dematerializer() 78 IRMemoryMap *m_map; variable
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
D | ButtonPropertyEditorPresentationImpl.java | 210 private final Map<Pair<PropertyTable, Property>, Control> m_map = Maps.newHashMap(); field in ButtonPropertyEditorPresentationImpl.PropertyToControlMap 213 m_map.put(Pair.create(propertyTable, property), control); in put() 217 return m_map.remove(Pair.create(propertyTable, property)); in remove() 221 return m_map.get(Pair.create(propertyTable, property)); in get()
|
/external/lldb/source/Expression/ |
D | Materializer.cpp | 1359 ExecutionContextScope *exe_scope = m_map->GetBestExecutionContextScope(); in Dematerialize() 1378 entity_up->DumpToLog(*m_map, m_process_address, log); in Dematerialize() 1385 …*>(m_materializer->m_result_entity)->Dematerialize (result_sp, frame_sp, *m_map, m_process_address… in Dematerialize() 1389 … entity_up->Dematerialize (frame_sp, *m_map, m_process_address, frame_top, frame_bottom, error); in Dematerialize() 1408 entity_up->Wipe (*m_map, m_process_address); in Wipe() 1412 m_map = NULL; in Wipe()
|
/external/deqp/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 567 de::insert(m_map, variable.getName(), SharedPtr<deUint8>(data, de::ArrayDeleter<deUint8>())); in bind() 573 deUint8* const data = de::lookup(m_map, variable.getName()).get(); in lookup() 579 map<string, SharedPtr<deUint8> > m_map; member in deqp::gls::BuiltinPrecisionTests::Environment
|