/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/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/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | DOMWrapperMap.h | 54 return m_map.get(key).newLocal(isolate); in newLocal() 59 typename MapType::iterator it = m_map.find(key); in setReturnValueFrom() 60 if (it == m_map.end()) in setReturnValueFrom() 68 m_map.get(key).setReferenceFrom(parent, isolate); in setReference() 73 return m_map.find(key) != m_map.end(); in containsKey() 78 typename MapType::iterator it = m_map.find(key); in containsKeyAndValue() 79 if (it == m_map.end()) in containsKeyAndValue() 90 typename MapType::AddResult result = m_map.add(key, UnsafePersistent<v8::Object>()); in set() 100 while (!m_map.isEmpty()) { in clear() 103 map.swap(m_map); in clear() [all …]
|
D | V8NPObject.cpp | 178 return m_map.get(key); in get() 183 ASSERT(!m_map.contains(key)); in set() 186 m_map.set(key, UnsafePersistent<v8::FunctionTemplate>(wrapper)); in set() 204 MapType::iterator it = m_map.find(key); in clear() 205 ASSERT_WITH_SECURITY_IMPLICATION(it != m_map.end()); in clear() 207 m_map.remove(it); in clear() 215 MapType m_map; member in WebCore::V8NPTemplateMap
|
/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/chromium_org/third_party/WebKit/Source/core/dom/ |
D | DocumentOrderedMap.cpp | 67 m_map.clear(); in clear() 79 Map::AddResult addResult = m_map.add(key, element); in add() 86 m_map.remove(addResult.iterator); in add() 91 Map::iterator cachedItem = m_map.find(key); in add() 92 if (cachedItem != m_map.end()) { in add() 93 m_map.remove(cachedItem); in add() 106 Map::iterator cachedItem = m_map.find(key); in remove() 107 if (cachedItem != m_map.end() && cachedItem->value == element) in remove() 108 m_map.remove(cachedItem); in remove() 119 Element* element = m_map.get(key); in get() [all …]
|
D | DocumentOrderedMap.h | 67 mutable Map m_map; variable 73 return m_map.contains(id) || m_duplicateCounts.contains(id); in contains()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | Length.cpp | 126 while (m_map.contains(m_index)) in insert() 129 m_map.set(m_index, calcValue); in insert() 136 ASSERT(m_map.contains(index)); in remove() 137 m_map.remove(index); in remove() 142 ASSERT(m_map.contains(index)); in get() 143 return m_map.get(index); in get() 148 ASSERT(m_map.contains(index)); in decrementRef() 149 CalculationValue* value = m_map.get(index); in decrementRef() 152 m_map.set(index, 0); in decrementRef() 153 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/svg/properties/ |
D | SVGAttributeToPropertyMap.cpp | 30 AttributeToPropertiesMap::const_iterator end = map.m_map.end(); in addProperties() 31 for (AttributeToPropertiesMap::const_iterator it = map.m_map.begin(); it != end; ++it) { in addProperties() 67 PropertiesVector* vector = m_map.get(attributeName); in animatedPropertiesForAttribute() 79 PropertiesVector* vector = m_map.get(attributeName); in animatedPropertyTypeForAttribute() 92 const AttributeToPropertiesMap::iterator end = m_map.end(); in synchronizeProperties() 93 for (AttributeToPropertiesMap::iterator it = m_map.begin(); it != end; ++it) { in synchronizeProperties() 106 PropertiesVector* vector = m_map.get(attributeName); in synchronizeProperty() 120 …AttributeToPropertiesMap::AddResult addResult = m_map.add(attributeName, PassOwnPtr<PropertiesVect… in getOrCreatePropertiesVector()
|
D | SVGAttributeToPropertyMap.h | 37 bool isEmpty() const { return m_map.isEmpty(); } in isEmpty() 55 AttributeToPropertiesMap m_map; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
D | SkiaImageFilterBuilder.cpp | 66 FilterBuilderHashMap::iterator it = m_map.find(key); in build() 67 if (it != m_map.end()) { in build() 73 m_map.set(key, filter); in build() 115 …m_map.set(deviceKey, transformColorSpace(noopFilter.get(), currentColorSpace, ColorSpaceDeviceRGB)… in buildFilterOperations() 116 …m_map.set(linearKey, transformColorSpace(noopFilter.get(), currentColorSpace, ColorSpaceLinearRGB)… in buildFilterOperations() 122 m_map.remove(deviceKey); in buildFilterOperations() 123 m_map.remove(linearKey); in buildFilterOperations()
|
D | SkiaImageFilterBuilder.h | 58 FilterBuilderHashMap 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/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | WidthCache.h | 150 m_map.clear(); in clear() 170 Map::AddResult addResult = m_map.add(smallStringKey, entry); in addSlowCase() 186 if ((m_singleCharMap.size() + m_map.size()) < s_maxSize) in addSlowCase() 191 m_map.clear(); in addSlowCase() 204 Map 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/chromium_org/third_party/WebKit/Source/web/ |
D | WebDevToolsAgentImpl.cpp | 454 InstrumentedObjectSizeProvider(const HashMap<const void*, size_t>& map) : m_map(map) { } in dumpUncountedAllocatedObjects() 457 HashMap<const void*, size_t>::const_iterator i = m_map.find(ptr); in dumpUncountedAllocatedObjects() 458 return i == m_map.end() ? 0 : i->value; in dumpUncountedAllocatedObjects() 462 const HashMap<const void*, size_t>& m_map; in dumpUncountedAllocatedObjects() member in blink::WebDevToolsAgentImpl::dumpUncountedAllocatedObjects::InstrumentedObjectSizeProvider
|