Searched refs:m_map (Results 1 - 25 of 37) 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/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp28 m_map.Sort ();
29 m_map.SizeToFit ();
35 m_map.Append(name.GetCString(), die_offset);
41 return m_map.GetValues (name.GetCString(), info_array);
47 return m_map.GetValues (regex, info_array);
56 const uint32_t size = m_map.GetSize();
59 const uint32_t die_offset = m_map.GetValueAtIndexUnchecked(i);
69 const uint32_t size = m_map.GetSize();
72 const char *cstr = m_map.GetCStringAtIndex(i);
73 s->Printf("%p: {0x%8.8x} \"%s\"\n", cstr, m_map
[all...]
H A DNameToDIE.h27 m_map()
61 lldb_private::UniqueCStringMap<uint32_t> m_map; member in class:NameToDIE
/external/lldb/include/lldb/Core/
H A DUniqueCStringMap.h75 m_map.push_back (typename UniqueCStringMap<T>::Entry(unique_cstr, value));
81 m_map.push_back (e);
87 m_map.clear();
98 m_map.insert (std::upper_bound (m_map.begin(), m_map.end(), e), e);
104 m_map.insert (std::upper_bound (m_map.begin(), m_map.end(), e), e);
116 if (idx < m_map
353 collection m_map; member in class:lldb_private::UniqueCStringMap
[all...]
/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/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp25 m_map(),
38 m_map[name] = entry;
47 MapIterator iter = m_map.find(name);
48 if (iter == m_map.end())
50 m_map.erase(name);
123 m_map.clear();
133 MapIterator iter = m_map.find(name);
134 if (iter == m_map.end())
144 MapIterator iter = m_map.begin();
145 MapIterator end = m_map
[all...]
H A DFormatCache.cpp109 m_map(),
120 auto i = m_map.find(type),
121 e = m_map.end();
124 m_map[type] = FormatCache::Entry();
125 return m_map[type];
186 m_map.clear();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentOrderedMap.h84 mutable Map m_map; member in class:blink::DocumentOrderedMap
89 return m_map.contains(id);
94 Map::const_iterator it = m_map.find(id);
95 return it != m_map.end() && it->value->count > 1;
H A DDocumentOrderedMap.cpp74 Map::AddResult addResult = m_map.add(key, adoptPtrWillBeNoop(new MapEntry(element)));
90 Map::iterator it = m_map.find(key);
91 if (it == m_map.end())
98 m_map.remove(it);
115 MapEntry* entry = m_map.get(key);
145 Map::iterator it = m_map.find(key);
146 if (it == m_map.end())
185 visitor->trace(m_map);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDOMWrapperMap.h47 , m_map(isolate)
53 return m_map.Get(key);
58 return m_map.SetReturnValue(key, returnValue);
63 m_map.SetReference(key, parent);
68 return m_map.Contains(key);
77 m_map.Set(key, unique.Pass());
82 m_map.Clear();
88 m_map.Remove(key);
152 typename PersistentValueMapTraits::MapType m_map; member in class:blink::DOMWrapperMap
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLength.cpp127 while (m_map.contains(m_index))
130 m_map.set(m_index, calcValue);
137 ASSERT(m_map.contains(index));
138 m_map.remove(index);
143 ASSERT(m_map.contains(index));
144 return *m_map.get(index);
149 ASSERT(m_map.contains(index));
150 CalculationValue* value = m_map.get(index);
153 m_map.set(index, nullptr);
154 m_map
162 HashMap<int, RefPtr<CalculationValue> > m_map; member in class:blink::CalculationValueHandleMap
[all...]
/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;
/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.h147 m_map.clear();
167 Map::AddResult addResult = m_map.add(smallStringKey, entry);
183 if ((m_singleCharMap.size() + m_map.size()) < s_maxSize)
188 m_map.clear();
201 Map m_map; member in class:blink::WidthCache
/external/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h94 return m_map.size();
125 MapType m_map; member in class:lldb_private::TypeCategoryMap
130 return m_map;
H A DFormatNavigator.h117 m_map(),
133 m_map[name] = entry;
142 MapIterator iter = m_map.find(name);
143 if (iter == m_map.end())
145 m_map.erase(name);
155 m_map.clear();
165 MapIterator iter = m_map.find(name);
166 if (iter == m_map.end())
178 MapIterator pos, end = m_map.end();
179 for (pos = m_map
227 MapType m_map; member in class:lldb_private::FormatMap
[all...]

Completed in 685 milliseconds

12