HomeSort by relevance Sort by last modified time
    Searched refs:m_map (Results 1 - 25 of 34) sorted by null

1 2

  /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/core/dom/
DocumentOrderedMap.h 87 mutable Map m_map; member in class:WebCore::DocumentOrderedMap
92 Map::const_iterator it = m_map.find(id);
93 return it != m_map.end() && it->value.count == 1;
98 return m_map.contains(id);
103 Map::const_iterator it = m_map.find(id);
104 return it != m_map.end() && it->value.count > 1;
DocumentOrderedMap.cpp 73 m_map.clear();
81 Map::AddResult addResult = m_map.add(key, MapEntry(element));
97 Map::iterator it = m_map.find(key);
98 ASSERT(it != m_map.end());
104 m_map.remove(it);
119 Map::iterator it = m_map.find(key);
120 if (it == m_map.end())
169 Map::iterator it = m_map.find(key);
170 if (it == m_map.end())
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/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMWrapperMap.h 54 return m_map.get(key).deprecatedHandle();
59 return m_map.get(key).newLocal(isolate);
68 typename MapType::AddResult result = m_map.add(key, UnsafePersistent<v8::Object>());
78 while (!m_map.isEmpty()) {
79 // Swap out m_map on each iteration to ensure any wrappers added due to side effects of the loop are cleared.
81 map.swap(m_map);
91 typename MapType::iterator it = m_map.find(key);
92 ASSERT(it != m_map.end());
94 m_map.remove(it);
101 MapType m_map; member in class:WebCore::DOMWrapperMap
    [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/core/platform/
Length.cpp 127 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 HashMap<int, RefPtr<CalculationValue> > m_map; member in class:WebCore::CalculationValueHandleMap
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
SkiaImageFilterBuilder.h 51 FilterBuilderHashMap m_map; member in class:WebCore::SkiaImageFilterBuilder
SkiaImageFilterBuilder.cpp 180 FilterBuilderHashMap::iterator it = m_map.find(key);
181 if (it != m_map.end()) {
187 m_map.set(key, filter);
229 m_map.set(deviceKey, transformColorSpace(filter.get(), currentColorSpace, ColorSpaceDeviceRGB));
230 m_map.set(linearKey, transformColorSpace(filter.get(), currentColorSpace, ColorSpaceLinearRGB));
236 m_map.remove(deviceKey);
237 m_map.remove(linearKey);
  /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/core/platform/graphics/
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...]

Completed in 635 milliseconds

1 2