/external/apache-xml/src/main/java/org/apache/xml/utils/ |
NodeVector.java | 45 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...] |
ObjectVector.java | 40 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_firstFree] = value [all...] |
IntVector.java | 40 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_firstFree] = value [all...] |
StringVector.java | 36 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, 0, newMap, 0, m_firstFree + 1) [all...] |
IntStack.java | 81 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;
|
StringToIntTable.java | 38 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[i].equals(key) [all...] |
SuballocatedIntVector.java | 58 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=newMap [all...] |
ObjectStack.java | 81 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/ |
OpMapVector.java | 37 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/ |
StringToIntTable.java | 45 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[i].equals(key) [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/ |
NodeSet.java | 828 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/ |
DOMWrapperMap.h | 54 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.isEmpty()) 123 MapType m_map; member in class:WebCore::DOMWrapperMap [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentOrderedMap.cpp | 67 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.remove(cachedItem) [all...] |
DocumentOrderedMap.h | 65 // 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/ |
Length.cpp | 126 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.remove(index) 161 HashMap<int, RefPtr<CalculationValue> > m_map; member in class:WebCore::CalculationValueHandleMap [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
fixed_mapping.hpp | 94 iterator it = boost::detail::lower_bound( m_map.begin(), m_map.end(), key, p1() ); 96 return (it == m_map.end() || Compare()( key, it->first ) ) ? m_invalid_value : it->second; 101 void init() { std::sort( m_map.begin(), m_map.end(), p2() ); } 102 void add_pair( key_param_type key, value_param_type value ) { m_map.push_back( elem_type( key, value ) ); } 106 map_type m_map; member in class:boost::unit_test::fixed_mapping
|
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/ |
SVGAttributeToPropertyMap.h | 37 bool isEmpty() const { return m_map.isEmpty(); } 55 AttributeToPropertiesMap m_map; member in class:WebCore::SVGAttributeToPropertyMap
|
SVGAttributeToPropertyMap.cpp | 30 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/ |
SkiaImageFilterBuilder.cpp | 66 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);
|
SkiaImageFilterBuilder.h | 58 FilterBuilderHashMap m_map; member in class:WebCore::SkiaImageFilterBuilder
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
EventListenerMap.cpp | 220 : 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;
|
EventListenerMap.h | 88 EventListenerMap* m_map; member in class:WebCore::EventListenerIterator
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
ChunkedIntArray.java | 271 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/ |
WidthCache.h | 150 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
|
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/ |
GLEScmContext.cpp | 32 m_map[GL_TEXTURE_COORD_ARRAY] = &m_texCoords[m_clientActiveTexture]; 44 m_map[GL_COLOR_ARRAY] = new GLESpointer(); 45 m_map[GL_NORMAL_ARRAY] = new GLESpointer(); 46 m_map[GL_VERTEX_ARRAY] = new GLESpointer(); 47 m_map[GL_POINT_SIZE_ARRAY_OES] = new GLESpointer(); 57 m_map[GL_TEXTURE_COORD_ARRAY] = &m_texCoords[m_clientActiveTexture]; 65 m_map[GL_TEXTURE_COORD_ARRAY] = NULL; 111 for ( it=m_map.begin() ; it != m_map.end(); it++ ) { 134 GLESpointer* p = m_map[array_id] [all...] |