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

1 2 3

  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
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/
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[] = new Object[m_mapSize]
    [all...]
IntStack.java 79 int newMap[] = new int[m_mapSize];
81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
83 m_map = newMap;
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[] = new int[m_mapSize]
    [all...]
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;
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[] = new int[m_mapSize]
    [all...]
ObjectStack.java 79 Object newMap[] = new Object[m_mapSize];
81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
83 m_map = newMap;
StringToIntTable.java 100 String newMap[] = new String[m_mapSize];
102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
104 m_map = newMap;
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=new int[newsize][]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
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_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.cpp 217 ResultMap newMap(newList.size());
225 for (size_t i = 0; i < newMap.size(); ++i) {
226 newMap[i].first = 0;
227 newMap[i].second = 0;
234 newMap[i].first = newList[i].get();
235 newMap[i].second = i;
242 newMap[newIndex].first = newList[newIndex].get();
243 newMap[newIndex].second = oldIndex;
266 newMap[newIt->value[0]] = std::make_pair(newList[newIt->value[0]].get(), oldIt->value[0]);
271 if (!newMap[i].first || newMap[i + 1].first
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
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[] = new Node[m_mapSize]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 291 int[] newMap[] = new int[m_mapSize][];
292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
293 m_map = newMap;
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h 125 void adoptActiveInterpolationsForAnimations(WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& newMap) { newMap.swap(m_activeInterpolationsForAnimations); }
126 void adoptActiveInterpolationsForTransitions(WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& newMap) { newMap.swap(m_activeInterpolationsForTransitions); }
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 206 FileMap* newMap = new FileMap();
207 if (!newMap->create(mFileName, fd, ze.offset, actualLen, true)) {
208 newMap->release();
212 return newMap;
  /frameworks/base/services/core/java/com/android/server/am/
ProviderMap.java 165 HashMap<String, ContentProviderRecord> newMap = new HashMap<String, ContentProviderRecord>();
166 mProvidersByNamePerUser.put(userId, newMap);
167 return newMap;
178 HashMap<ComponentName, ContentProviderRecord> newMap
180 mProvidersByClassPerUser.put(userId, newMap);
181 return newMap;
  /cts/tests/tests/util/src/android/util/cts/
ArrayMapTest.java 416 ArrayMap newMap = new ArrayMap<Integer, String>();
418 newMap.put(i, String.valueOf(i));
420 ArrayMap mapCopy = new ArrayMap(newMap);
421 if (!compare(mapCopy, newMap)) {
423 newMap + ", got " + mapCopy;
425 dump(newMap, mapCopy);
  /frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
ArrayMapTests.java 424 ArrayMap newMap = new ArrayMap<Integer, String>();
426 newMap.put(i, String.valueOf(i));
428 ArrayMap mapCopy = new ArrayMap(newMap);
429 if (!compare(mapCopy, newMap)) {
431 newMap + ", got " + mapCopy);
432 dump(newMap, mapCopy);
  /external/guava/guava-tests/test/com/google/common/cache/
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());
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 134 parameterMap = OAuth.newMap(parameters);
255 final Map<String, String> pMap = OAuth.newMap(parameters);
OAuth.java 184 public static Map<String, String> newMap(Iterable<? extends Map.Entry> from) {
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 690 Bitmap newMap = temp.copy(temp.getConfig(), true);
691 Canvas overlayCanvas = new Canvas(newMap);
694 int left = (newMap.getWidth() - overlayWidth) / 2;
695 int top = (newMap.getHeight() - overlayHeight) / 2;
701 temp = newMap;
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 188 } else if (!OAuth.newMap(parameters).containsKey(OAuth.OAUTH_TOKEN)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunchController.java     [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
slf4j-api-1.7.5.jar 

Completed in 691 milliseconds

1 2 3