Home
last modified time | relevance | path

Searched refs:newMap (Results 1 – 18 of 18) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/utils/
DObjectVector.java133 Object newMap[] = new Object[m_mapSize]; in addElement() local
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement()
137 m_map = newMap; in addElement()
157 Object newMap[] = new Object[m_mapSize]; in addElements() local
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements()
161 m_map = newMap; in addElements()
183 Object newMap[] = new Object[m_mapSize]; in addElements() local
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements()
187 m_map = newMap; in addElements()
210 Object newMap[] = new Object[m_mapSize]; in insertElementAt() local
[all …]
DIntVector.java133 int newMap[] = new int[m_mapSize]; in addElement() local
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement()
137 m_map = newMap; in addElement()
157 int newMap[] = new int[m_mapSize]; in addElements() local
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements()
161 m_map = newMap; in addElements()
183 int newMap[] = new int[m_mapSize]; in addElements() local
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements()
187 m_map = newMap; in addElements()
210 int newMap[] = new int[m_mapSize]; in insertElementAt() local
[all …]
DNodeVector.java130 int newMap[] = new int[m_mapSize]; in addElement() local
132 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement()
134 m_map = newMap; in addElement()
164 int newMap[] = new int[m_mapSize]; in push() local
166 System.arraycopy(m_map, 0, newMap, 0, ff + 1); in push()
168 m_map = newMap; in push()
258 int newMap[] = new int[m_mapSize]; in pushPair() local
260 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); in pushPair()
262 m_map = newMap; in pushPair()
374 int newMap[] = new int[m_mapSize]; in insertElementAt() local
[all …]
DSuballocatedIntVector.java167 int[][] newMap=new int[newsize][]; in addElement() local
168 System.arraycopy(m_map, 0, newMap, 0, m_map.length); in addElement()
169 m_map=newMap; in addElement()
207 int[][] newMap=new int[newsize][]; in addElements() local
208 System.arraycopy(m_map, 0, newMap, 0, m_map.length); in addElements()
209 m_map=newMap; in addElements()
265 int[][] newMap=new int[newsize][]; in insertElementAt() local
266 System.arraycopy(m_map, 0, newMap, 0, m_map.length); in insertElementAt()
267 m_map=newMap; in insertElementAt()
399 int[][] newMap=new int[newsize][]; in setElementAt() local
[all …]
DStringVector.java101 String newMap[] = new String[m_mapSize]; in addElement() local
103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement()
105 m_map = newMap; in addElement()
181 String newMap[] = new String[m_mapSize]; in push() local
183 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push()
185 m_map = newMap; in push()
DIntStack.java79 int newMap[] = new int[m_mapSize]; in push() local
81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push()
83 m_map = newMap; in push()
DObjectStack.java79 Object newMap[] = new Object[m_mapSize]; in push() local
81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push()
83 m_map = newMap; in push()
DStringToIntTable.java100 String newMap[] = new String[m_mapSize]; in put() local
102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in put()
104 m_map = newMap; in put()
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DOpMapVector.java89 int newMap[] = new int[m_mapSize]; in setElementAt() local
91 System.arraycopy(m_map, 0, newMap, 0, oldSize); in setElementAt()
93 m_map = newMap; in setElementAt()
107 int newMap[] = new int[size]; in setToSize() local
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/xpath/
DNodeSet.java891 Node newMap[] = new Node[m_mapSize]; in addElement() local
893 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement()
895 m_map = newMap; in addElement()
925 Node newMap[] = new Node[m_mapSize]; in push() local
927 System.arraycopy(m_map, 0, newMap, 0, ff + 1); in push()
929 m_map = newMap; in push()
1019 Node newMap[] = new Node[m_mapSize]; in pushPair() local
1021 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); in pushPair()
1023 m_map = newMap; in pushPair()
1116 Node newMap[] = new Node[m_mapSize]; in insertElementAt() local
[all …]
/external/webkit/Source/WebCore/storage/
DStorageAreaImpl.cpp150 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException); in setItem() local
151 if (newMap) in setItem()
152 m_storageMap = newMap.release(); in setItem()
177 RefPtr<StorageMap> newMap = m_storageMap->removeItem(key, oldValue); in removeItem() local
178 if (newMap) in removeItem()
179 m_storageMap = newMap.release(); in removeItem()
DStorageMap.cpp48 RefPtr<StorageMap> newMap = create(m_quotaSize); in copy() local
49 newMap->m_map = m_map; in copy()
50 newMap->m_currentLength = m_currentLength; in copy()
51 return newMap.release(); in copy()
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DStringToIntTable.java107 String newMap[] = new String[m_mapSize]; in put() local
109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in put()
111 m_map = newMap; in put()
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
Dlist_selection_model.js272 var newMap = [];
276 newMap[i] = true;
280 newMap[i + itemsAdded - itemsRemoved] = true;
283 this.selectedIndexes_ = newMap;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DChunkedIntArray.java291 int[] newMap[] = new int[m_mapSize][]; in addElement() local
292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize); in addElement()
293 m_map = newMap; in addElement()
/external/oauth/core/src/main/java/net/oauth/
DOAuthMessage.java134 parameterMap = OAuth.newMap(parameters); in getParameterMap()
255 final Map<String, String> pMap = OAuth.newMap(parameters); in addRequiredParameters()
DOAuth.java184 public static Map<String, String> newMap(Iterable<? extends Map.Entry> from) { in newMap() method in OAuth
/external/oauth/core/src/main/java/net/oauth/client/
DOAuthClient.java188 } else if (!OAuth.newMap(parameters).containsKey(OAuth.OAUTH_TOKEN)) { in getAccessToken()