/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 …]
|
/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/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | DOMWrapperMap.h | 47 , m_map(isolate) in DOMWrapperMap() 53 return m_map.Get(key); in newLocal() 58 return m_map.SetReturnValue(key, returnValue); in setReturnValueFrom() 63 m_map.SetReference(key, parent); in setReference() 68 return m_map.Contains(key); in containsKey() 77 m_map.Set(key, unique.Pass()); in set() 82 m_map.Clear(); in clear() 88 m_map.Remove(key); in removeAndDispose() 152 typename PersistentValueMapTraits::MapType m_map; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | Length.cpp | 127 while (m_map.contains(m_index)) in insert() 130 m_map.set(m_index, calcValue); in insert() 137 ASSERT(m_map.contains(index)); in remove() 138 m_map.remove(index); in remove() 143 ASSERT(m_map.contains(index)); in get() 144 return *m_map.get(index); in get() 149 ASSERT(m_map.contains(index)); in decrementRef() 150 CalculationValue* value = m_map.get(index); in decrementRef() 153 m_map.set(index, nullptr); in decrementRef() 154 m_map.remove(index); in decrementRef() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | EventListenerMap.cpp | 220 : m_map(0) in EventListenerIterator() 227 : m_map(0) in EventListenerIterator() 237 m_map = &data->eventListenerMap; in EventListenerIterator() 242 m_map->m_activeIteratorCount++; in EventListenerIterator() 250 if (m_map) { in ~EventListenerIterator() 252 m_map->m_activeIteratorCount--; in ~EventListenerIterator() 259 if (!m_map) in nextListener() 262 for (; m_entryIndex < m_map->m_entries.size(); ++m_entryIndex) { in nextListener() 263 EventListenerVector& listeners = *m_map->m_entries[m_entryIndex].second; in nextListener()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | DocumentOrderedMap.cpp | 74 Map::AddResult addResult = m_map.add(key, adoptPtrWillBeNoop(new MapEntry(element))); in add() 90 Map::iterator it = m_map.find(key); in remove() 91 if (it == m_map.end()) in remove() 98 m_map.remove(it); in remove() 115 MapEntry* entry = m_map.get(key); in get() 145 Map::iterator it = m_map.find(key); in getAllElementsById() 146 if (it == m_map.end()) in getAllElementsById() 185 visitor->trace(m_map); in trace()
|
D | DocumentOrderedMap.h | 84 mutable Map m_map; variable 89 return m_map.contains(id); in contains() 94 Map::const_iterator it = m_map.find(id); in containsMultiple() 95 return it != m_map.end() && it->value->count > 1; in containsMultiple()
|
/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()
|
/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/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | WidthCache.h | 147 m_map.clear(); in clear() 167 Map::AddResult addResult = m_map.add(smallStringKey, entry); in addSlowCase() 183 if ((m_singleCharMap.size() + m_map.size()) < s_maxSize) in addSlowCase() 188 m_map.clear(); in addSlowCase() 201 Map m_map; variable
|
/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
|