Home
last modified time | relevance | path

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

12

/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/guava/guava-tests/test/com/google/common/collect/
DBenchmarkHelpers.java216 ConcurrentMap<K, V> newMap = new MapMaker().keyEquivalence(Equivalence.equals()).makeMap(); in create() local
217 checkState(newMap instanceof MapMakerInternalMap); in create()
218 newMap.putAll(map); in create()
219 return newMap; in create()
225 ConcurrentMap<K, V> newMap = new MapMaker().weakValues().makeMap(); in create() local
226 checkState(newMap instanceof MapMakerInternalMap); in create()
227 newMap.putAll(map); in create()
228 return newMap; in create()
234 ConcurrentMap<K, V> newMap = new MapMaker().weakKeys().makeMap(); in create() local
235 checkState(newMap instanceof MapMakerInternalMap); in create()
[all …]
/external/guava/android/guava-tests/test/com/google/common/collect/
DBenchmarkHelpers.java216 ConcurrentMap<K, V> newMap = new MapMaker().keyEquivalence(Equivalence.equals()).makeMap(); in create() local
217 checkState(newMap instanceof MapMakerInternalMap); in create()
218 newMap.putAll(map); in create()
219 return newMap; in create()
225 ConcurrentMap<K, V> newMap = new MapMaker().weakValues().makeMap(); in create() local
226 checkState(newMap instanceof MapMakerInternalMap); in create()
227 newMap.putAll(map); in create()
228 return newMap; in create()
234 ConcurrentMap<K, V> newMap = new MapMaker().weakKeys().makeMap(); in create() local
235 checkState(newMap instanceof MapMakerInternalMap); in create()
[all …]
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DRubyMap.java334 RubyMap newMap = newThisType(context); in dup() local
336 newMap.table.put(entry.getKey(), entry.getValue()); in dup()
338 return newMap; in dup()
348 RubyMap newMap = newThisType(context); in deepCopy() local
353 newMap.table.put(key.dup(), message.deepCopy(context)); in deepCopy()
358 newMap.table.put(key.dup(), table.get(key).dup()); in deepCopy()
361 return newMap; in deepCopy()
404 RubyMap newMap; in newThisType() local
406 newMap = (RubyMap) metaClass.newInstance(context, in newThisType()
411 newMap = (RubyMap) metaClass.newInstance(context, in newThisType()
[all …]
/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/protobuf/java/core/src/test/java/com/google/protobuf/
DMapLiteTest.java217 assertEquals(newMap(1, 2), builder.getInt32ToInt32Field()); in testSanityCopyOnWrite()
220 assertEquals(newMap(1, 2), message.getInt32ToInt32Field()); in testSanityCopyOnWrite()
221 assertEquals(newMap(1, 2, 2, 3), builder.getInt32ToInt32Field()); in testSanityCopyOnWrite()
269 assertEquals(newMap(1, 2), builder.build().getInt32ToInt32Field()); in testMutableMapLifecycle()
270 assertEquals(newMap(1, 2), builder.getInt32ToInt32Field()); in testMutableMapLifecycle()
272 assertEquals(newMap(1, 2, 2, 3), builder.getInt32ToInt32Field()); in testMutableMapLifecycle()
275 assertEquals(newMap(1, TestMap.EnumValue.BAR), builder.build().getInt32ToEnumField()); in testMutableMapLifecycle()
276 assertEquals(newMap(1, TestMap.EnumValue.BAR), builder.getInt32ToEnumField()); in testMutableMapLifecycle()
279 newMap(1, TestMap.EnumValue.BAR, 2, TestMap.EnumValue.FOO), builder.getInt32ToEnumField()); in testMutableMapLifecycle()
282 assertEquals(newMap(1, "1"), builder.build().getInt32ToStringField()); in testMutableMapLifecycle()
[all …]
DMapForProto2LiteTest.java211 assertEquals(newMap(1, 2), message.getInt32ToInt32Field()); in testSanityCopyOnWrite()
212 assertEquals(newMap(1, 2), builder.getInt32ToInt32Field()); in testSanityCopyOnWrite()
214 assertEquals(newMap(1, 2), message.getInt32ToInt32Field()); in testSanityCopyOnWrite()
215 assertEquals(newMap(1, 2, 2, 3), builder.getInt32ToInt32Field()); in testSanityCopyOnWrite()
257 assertEquals(newMap(1, 2), builder.build().getInt32ToInt32Field()); in testMutableMapLifecycle()
258 assertEquals(newMap(1, 2), builder.getInt32ToInt32Field()); in testMutableMapLifecycle()
260 assertEquals(newMap(1, 2, 2, 3), builder.getInt32ToInt32Field()); in testMutableMapLifecycle()
263 assertEquals(newMap(1, TestMap.EnumValue.BAR), builder.build().getInt32ToEnumField()); in testMutableMapLifecycle()
264 assertEquals(newMap(1, TestMap.EnumValue.BAR), builder.getInt32ToEnumField()); in testMutableMapLifecycle()
267 newMap(1, TestMap.EnumValue.BAR, 2, TestMap.EnumValue.FOO), builder.getInt32ToEnumField()); in testMutableMapLifecycle()
[all …]
DMapTest.java321 assertEquals(newMap(1, 2), builder.build().getInt32ToInt32Field()); in testMutableMapLifecycle()
328 assertEquals(newMap(1, 2), builder.getInt32ToInt32Field()); in testMutableMapLifecycle()
330 assertEquals(newMap(1, 2, 2, 3), builder.getInt32ToInt32Field()); in testMutableMapLifecycle()
334 assertEquals(newMap(1, TestMap.EnumValue.BAR), builder.build().getInt32ToEnumField()); in testMutableMapLifecycle()
341 assertEquals(newMap(1, TestMap.EnumValue.BAR), builder.getInt32ToEnumField()); in testMutableMapLifecycle()
344 newMap(1, TestMap.EnumValue.BAR, 2, TestMap.EnumValue.FOO), in testMutableMapLifecycle()
349 assertEquals(newMap(1, "1"), builder.build().getInt32ToStringField()); in testMutableMapLifecycle()
356 assertEquals(newMap(1, "1"), builder.getInt32ToStringField()); in testMutableMapLifecycle()
359 newMap(1, "1", 2, "2"), in testMutableMapLifecycle()
364 assertEquals(newMap(1, TestMap.MessageValue.getDefaultInstance()), in testMutableMapLifecycle()
[all …]
DMapForProto2Test.java318 assertEquals(newMap(1, 2), builder.build().getInt32ToInt32Field()); in testMutableMapLifecycle()
325 assertEquals(newMap(1, 2), builder.getInt32ToInt32Field()); in testMutableMapLifecycle()
327 assertEquals(newMap(1, 2, 2, 3), builder.getInt32ToInt32Field()); in testMutableMapLifecycle()
331 assertEquals(newMap(1, TestMap.EnumValue.BAR), builder.build().getInt32ToEnumField()); in testMutableMapLifecycle()
338 assertEquals(newMap(1, TestMap.EnumValue.BAR), builder.getInt32ToEnumField()); in testMutableMapLifecycle()
341 newMap(1, TestMap.EnumValue.BAR, 2, TestMap.EnumValue.FOO), in testMutableMapLifecycle()
346 assertEquals(newMap(1, "1"), builder.build().getInt32ToStringField()); in testMutableMapLifecycle()
353 assertEquals(newMap(1, "1"), builder.getInt32ToStringField()); in testMutableMapLifecycle()
356 newMap(1, "1", 2, "2"), in testMutableMapLifecycle()
361 assertEquals(newMap(1, TestMap.MessageValue.getDefaultInstance()), in testMutableMapLifecycle()
[all …]
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DTypeMapper.java18 HashMap<String, String> newMap = new HashMap<>(); in convertToSlashes() local
22 newMap.put(key, value); in convertToSlashes()
23 newMap.put("L" + key + ";", "L" + value + ";"); // also the param reference form in convertToSlashes()
25 return newMap; in convertToSlashes()
/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/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
DBasicMDCAdapter.java146 …Map<String, String> newMap = Collections.<String, String> synchronizedMap(new HashMap<String, Stri… in getCopyOfContextMap() local
148 newMap.putAll(oldMap); in getCopyOfContextMap()
150 return newMap; in getCopyOfContextMap()
/external/cldr/tools/java/org/unicode/cldr/test/
DXPathToMenu.java117 HashMap<String, String> newMap = new HashMap<>(); in getMetazoneToContinentMap() local
119 newMap.put(mzToContinentStatic[i + 0], mzToContinentStatic[i + 1]); in getMetazoneToContinentMap()
121 mzToContinentMap = newMap; in getMetazoneToContinentMap()
/external/fonttools/Lib/fontTools/varLib/
DfeatureVars.py128 newMap = OrderedDict(initMapInit)
135 newMap[intersection] = newMap.get(intersection, 0) | rank|currRank
138 newMap[remainder] = newMap.get(remainder, 0) | rank
139 boxMap = newMap
/external/cldr/tools/java/org/unicode/cldr/util/
DCollationMapMaker.java123 UnicodeMap newMap = (m.cloneAsThawed()); in minimalize() local
127 newMap.put(i.codepoint, null); in minimalize()
128 String t = newMap.transform(newMap.transform(i.getString())); in minimalize()
130 newMap.put(i.codepoint, s); in minimalize()
141 UnicodeMap newMap = new UnicodeMap(); in fixNeeded() local
155 newMap.put(i.codepoint, newResult); in fixNeeded()
157 m = newMap; in fixNeeded()
/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/llvm-project/mlir/lib/Transforms/Utils/
DUtils.cpp171 auto newMap = builder.getMultiDimIdentityMap(newMemRefRank); in replaceAllMemRefUsesWith() local
173 fullyComposeAffineMapAndOperands(&newMap, &newMapOperands); in replaceAllMemRefUsesWith()
174 newMap = simplifyAffineMap(newMap); in replaceAllMemRefUsesWith()
175 canonicalizeMapAndOperands(&newMap, &newMapOperands); in replaceAllMemRefUsesWith()
204 auto newMapAttr = AffineMapAttr::get(newMap); in replaceAllMemRefUsesWith()

12