Searched refs:m_map (Results 1 - 25 of 27) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNodeVector.java45 private int m_map[]; field in class:NodeVector
91 if ((null != this.m_map) && (this.m_map == clone.m_map))
93 clone.m_map = new int[this.m_map.length];
95 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
121 if (null == m_map)
[all...]
H A DObjectVector.java40 protected Object m_map[]; field in class:ObjectVector
57 m_map = new Object[m_blocksize];
70 m_map = new Object[blocksize];
83 m_map = new Object[blocksize];
93 m_map = new Object[v.m_mapSize];
97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
137 m_map = newMap;
140 m_map[m_firstFre
[all...]
H A DIntVector.java40 protected int m_map[]; // IntStack is trying to see this directly field in class:IntVector
57 m_map = new int[m_blocksize];
70 m_map = new int[blocksize];
83 m_map = new int[blocksize];
93 m_map = new int[v.m_mapSize];
97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
137 m_map = newMap;
140 m_map[m_firstFre
[all...]
H A DStringVector.java36 protected String m_map[]; field in class:StringVector
53 m_map = new String[m_blocksize];
66 m_map = new String[blocksize];
103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
105 m_map = newMap;
108 m_map[m_firstFree] = value;
122 return m_map[i];
140 if (m_map[i].equals(s))
162 if (m_map[i].equalsIgnoreCase(s))
183 System.arraycopy(m_map,
[all...]
H A DIntStack.java81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
83 m_map = newMap;
86 m_map[m_firstFree] = i;
101 return m_map[--m_firstFree];
123 return m_map[m_firstFree - 1];
141 return m_map[m_firstFree-(1+n)];
159 m_map[m_firstFree - 1] = val;
H A DStringToIntTable.java38 private String m_map[]; field in class:StringToIntTable
41 * m_map. */
59 m_map = new String[m_blocksize];
73 m_map = new String[blocksize];
102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
104 m_map = newMap;
113 m_map[m_firstFree] = key;
132 if (m_map[i].equals(key))
154 if (m_map[i].equalsIgnoreCase(key))
173 if (m_map[
[all...]
H A DSuballocatedIntVector.java58 protected int m_map[][]; field in class:SuballocatedIntVector
63 /** "Shortcut" handle to m_map[0]. Surprisingly helpful for short vectors. */
66 /** "Shortcut" handle to most recently added row of m_map.
102 m_map = new int[numblocks][];
103 m_map[0]=m_map0;
149 // Is the new index an index into the cache row of m_map?
164 if(index>=m_map.length)
168 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
169 m_map
[all...]
H A DObjectStack.java81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
83 m_map = newMap;
86 m_map[m_firstFree] = i;
101 Object val = m_map[--m_firstFree];
102 m_map[m_firstFree] = null;
126 return m_map[m_firstFree - 1];
144 return m_map[m_firstFree-(1+n)];
162 m_map[m_firstFree - 1] = val;
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DOpMapVector.java37 protected int m_map[]; // IntStack is trying to see this directly field in class:OpMapVector
56 m_map = new int[blocksize];
68 return m_map[i];
91 System.arraycopy(m_map, 0, newMap, 0, oldSize);
93 m_map = newMap;
96 m_map[index] = value;
109 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]);
112 m_map = newMap;
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DStringToIntTable.java45 private String m_map[]; field in class:StringToIntTable
48 * m_map. */
66 m_map = new String[m_blocksize];
80 m_map = new String[blocksize];
109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
111 m_map = newMap;
120 m_map[m_firstFree] = key;
139 if (m_map[i].equals(key))
161 if (m_map[i].equalsIgnoreCase(key))
180 if (m_map[
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java828 Node m_map[]; field in class:NodeSet
850 if ((null != this.m_map) && (this.m_map == clone.m_map))
852 clone.m_map = new Node[this.m_map.length];
854 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
882 if (null == m_map)
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DDOMWrapperMap.h54 return m_map.get(key).newLocal(isolate);
59 typename MapType::iterator it = m_map.find(key);
60 if (it == m_map.end())
68 m_map.get(key).setReferenceFrom(parent, isolate);
73 return m_map.find(key) != m_map.end();
78 typename MapType::iterator it = m_map.find(key);
79 if (it == m_map.end())
90 typename MapType::AddResult result = m_map.add(key, UnsafePersistent<v8::Object>());
100 while (!m_map
123 MapType m_map; member in class:WebCore::DOMWrapperMap
[all...]
H A DV8NPObject.cpp178 return m_map.get(key);
183 ASSERT(!m_map.contains(key));
186 m_map.set(key, UnsafePersistent<v8::FunctionTemplate>(wrapper));
204 MapType::iterator it = m_map.find(key);
205 ASSERT_WITH_SECURITY_IMPLICATION(it != m_map.end());
207 m_map.remove(it);
215 MapType m_map; member in class:WebCore::V8NPTemplateMap
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentOrderedMap.cpp67 m_map.clear();
78 // also not already in m_map and try to add it. If that add succeeds, we're done.
79 Map::AddResult addResult = m_map.add(key, element);
83 // The add failed, so this key was already cached in m_map.
84 // There are multiple elements with this key. Remove the m_map
86 m_map.remove(addResult.iterator);
89 // There are multiple elements with this key. Remove the m_map
91 Map::iterator cachedItem = m_map.find(key);
92 if (cachedItem != m_map.end()) {
93 m_map
[all...]
H A DDocumentOrderedMap.h65 // excluding the one referenced in m_map, if any. This means it one less than the total count
67 mutable Map m_map; member in class:WebCore::DocumentOrderedMap
73 return m_map.contains(id) || m_duplicateCounts.contains(id);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLength.cpp126 while (m_map.contains(m_index))
129 m_map.set(m_index, calcValue);
136 ASSERT(m_map.contains(index));
137 m_map.remove(index);
142 ASSERT(m_map.contains(index));
143 return m_map.get(index);
148 ASSERT(m_map.contains(index));
149 CalculationValue* value = m_map.get(index);
152 m_map.set(index, 0);
153 m_map
161 HashMap<int, RefPtr<CalculationValue> > m_map; member in class:WebCore::CalculationValueHandleMap
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGAttributeToPropertyMap.h37 bool isEmpty() const { return m_map.isEmpty(); }
55 AttributeToPropertiesMap m_map; member in class:WebCore::SVGAttributeToPropertyMap
H A DSVGAttributeToPropertyMap.cpp30 AttributeToPropertiesMap::const_iterator end = map.m_map.end();
31 for (AttributeToPropertiesMap::const_iterator it = map.m_map.begin(); it != end; ++it) {
67 PropertiesVector* vector = m_map.get(attributeName);
79 PropertiesVector* vector = m_map.get(attributeName);
92 const AttributeToPropertiesMap::iterator end = m_map.end();
93 for (AttributeToPropertiesMap::iterator it = m_map.begin(); it != end; ++it) {
106 PropertiesVector* vector = m_map.get(attributeName);
120 AttributeToPropertiesMap::AddResult addResult = m_map.add(attributeName, PassOwnPtr<PropertiesVector>());
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DSkiaImageFilterBuilder.cpp66 FilterBuilderHashMap::iterator it = m_map.find(key);
67 if (it != m_map.end()) {
73 m_map.set(key, filter);
115 m_map.set(deviceKey, transformColorSpace(noopFilter.get(), currentColorSpace, ColorSpaceDeviceRGB));
116 m_map.set(linearKey, transformColorSpace(noopFilter.get(), currentColorSpace, ColorSpaceLinearRGB));
122 m_map.remove(deviceKey);
123 m_map.remove(linearKey);
H A DSkiaImageFilterBuilder.h58 FilterBuilderHashMap m_map; member in class:WebCore::SkiaImageFilterBuilder
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventListenerMap.cpp220 : m_map(0)
227 : m_map(0)
237 m_map = &data->eventListenerMap;
242 m_map->m_activeIteratorCount++;
250 if (m_map) {
252 m_map->m_activeIteratorCount--;
259 if (!m_map)
262 for (; m_entryIndex < m_map->m_entries.size(); ++m_entryIndex) {
263 EventListenerVector& listeners = *m_map->m_entries[m_entryIndex].second;
H A DEventListenerMap.h88 EventListenerMap* m_map; member in class:WebCore::EventListenerIterator
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java271 int[] m_map[] = new int[BLOCKSIZE][]; field in class:ChunkedIntArray.ChunksVector
292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
293 m_map = newMap;
297 m_map[pos] = value;
303 return m_map[pos];
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DWidthCache.h150 m_map.clear();
170 Map::AddResult addResult = m_map.add(smallStringKey, entry);
186 if ((m_singleCharMap.size() + m_map.size()) < s_maxSize)
191 m_map.clear();
204 Map m_map; member in class:WebCore::WidthCache
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentationImpl.java210 private final Map<Pair<PropertyTable, Property>, Control> m_map = Maps.newHashMap(); field in class:ButtonPropertyEditorPresentationImpl.PropertyToControlMap
213 m_map.put(Pair.create(propertyTable, property), control);
217 return m_map.remove(Pair.create(propertyTable, property));
221 return m_map.get(Pair.create(propertyTable, property));

Completed in 396 milliseconds

12