/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
H A D | OpMapVector.java | 89 int newMap[] = new int[m_mapSize]; 91 System.arraycopy(m_map, 0, newMap, 0, oldSize); 93 m_map = newMap; 107 int newMap[] = new int[size]; 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/utils/ |
H A D | ObjectVector.java | 133 Object newMap[] = new Object[m_mapSize]; 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 137 m_map = newMap; 157 Object newMap[] = new Object[m_mapSize]; 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 161 m_map = newMap; 183 Object newMap[] = new Object[m_mapSize]; 185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 187 m_map = newMap; 210 Object newMap[] [all...] |
H A D | IntStack.java | 79 int newMap[] = new int[m_mapSize]; 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 83 m_map = newMap;
|
H A D | IntVector.java | 133 int newMap[] = new int[m_mapSize]; 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 137 m_map = newMap; 157 int newMap[] = new int[m_mapSize]; 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 161 m_map = newMap; 183 int newMap[] = new int[m_mapSize]; 185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 187 m_map = newMap; 210 int newMap[] [all...] |
H A D | StringVector.java | 101 String newMap[] = new String[m_mapSize]; 103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 105 m_map = newMap; 181 String newMap[] = new String[m_mapSize]; 183 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 185 m_map = newMap;
|
H A D | NodeVector.java | 130 int newMap[] = new int[m_mapSize]; 132 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 134 m_map = newMap; 164 int newMap[] = new int[m_mapSize]; 166 System.arraycopy(m_map, 0, newMap, 0, ff + 1); 168 m_map = newMap; 258 int newMap[] = new int[m_mapSize]; 260 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); 262 m_map = newMap; 374 int newMap[] [all...] |
H A D | ObjectStack.java | 79 Object newMap[] = new Object[m_mapSize]; 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 83 m_map = newMap;
|
H A D | StringToIntTable.java | 100 String newMap[] = new String[m_mapSize]; 102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 104 m_map = newMap;
|
H A D | SuballocatedIntVector.java | 167 int[][] newMap=new int[newsize][]; 168 System.arraycopy(m_map, 0, newMap, 0, m_map.length); 169 m_map=newMap; 207 int[][] newMap=new int[newsize][]; 208 System.arraycopy(m_map, 0, newMap, 0, m_map.length); 209 m_map=newMap; 265 int[][] newMap=new int[newsize][]; 266 System.arraycopy(m_map, 0, newMap, 0, m_map.length); 267 m_map=newMap; 399 int[][] newMap [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
H A D | StringToIntTable.java | 107 String newMap[] = new String[m_mapSize]; 109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 111 m_map = newMap;
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
H A D | list_selection_model.js | 272 var newMap = []; 276 newMap[i] = true; 280 newMap[i + itemsAdded - itemsRemoved] = true; 283 this.selectedIndexes_ = newMap;
|
/external/webkit/Source/WebCore/storage/ |
H A D | StorageMap.cpp | 48 RefPtr<StorageMap> newMap = create(m_quotaSize); local 49 newMap->m_map = m_map; 50 newMap->m_currentLength = m_currentLength; 51 return newMap.release();
|
H A D | StorageAreaImpl.cpp | 150 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException); local 151 if (newMap) 152 m_storageMap = newMap.release(); 177 RefPtr<StorageMap> newMap = m_storageMap->removeItem(key, oldValue); local 178 if (newMap) 179 m_storageMap = newMap.release();
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
H A D | NodeSet.java | 891 Node newMap[] = new Node[m_mapSize]; 893 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 895 m_map = newMap; 925 Node newMap[] = new Node[m_mapSize]; 927 System.arraycopy(m_map, 0, newMap, 0, ff + 1); 929 m_map = newMap; 1019 Node newMap[] = new Node[m_mapSize]; 1021 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); 1023 m_map = newMap; 1116 Node newMap[] [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
H A D | ChunkedIntArray.java | 291 int[] newMap[] = new int[m_mapSize][]; 292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize); 293 m_map = newMap;
|
/external/guava/guava-tests/test/com/google/common/cache/ |
H A D | LocalLoadingCacheTest.java | 252 Map<Object, Object> newMap = ImmutableMap.of(one, one); 253 assertEquals(newMap, map); 254 assertEquals(newMap.entrySet(), map.entrySet()); 255 assertEquals(newMap.keySet(), map.keySet());
|
H A D | LocalCacheTest.java | 781 Map<Object, Object> newMap = ImmutableMap.of(one, four); 782 map.putAll(newMap);
|
/external/oauth/core/src/main/java/net/oauth/ |
H A D | OAuthMessage.java | 134 parameterMap = OAuth.newMap(parameters); 255 final Map<String, String> pMap = OAuth.newMap(parameters);
|
H A D | OAuth.java | 184 public static Map<String, String> newMap(Iterable<? extends Map.Entry> from) { method in class:OAuth
|
/external/oauth/core/src/main/java/net/oauth/client/ |
H A D | OAuthClient.java | 188 } else if (!OAuth.newMap(parameters).containsKey(OAuth.OAUTH_TOKEN)) {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | MapMakerInternalMapTest.java | 365 Map<Object, Object> newMap = ImmutableMap.of(one, four); 366 map.putAll(newMap);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.core.databinding_1.3.100.I20100601-0800.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.mortbay.jetty.util_6.1.23.v201004211559.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |