Searched refs:newMap (Results 1 - 25 of 36) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DOpMapVector.java91 int newMap[] = new int[m_mapSize];
93 System.arraycopy(m_map, 0, newMap, 0, oldSize);
95 m_map = newMap;
109 int newMap[] = new int[size];
111 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]);
114 m_map = newMap;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DObjectVector.java135 Object newMap[] = new Object[m_mapSize];
137 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
139 m_map = newMap;
159 Object newMap[] = new Object[m_mapSize];
161 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
163 m_map = newMap;
185 Object newMap[] = new Object[m_mapSize];
187 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
189 m_map = newMap;
212 Object newMap[]
[all...]
H A DIntVector.java135 int newMap[] = new int[m_mapSize];
137 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
139 m_map = newMap;
159 int newMap[] = new int[m_mapSize];
161 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
163 m_map = newMap;
185 int newMap[] = new int[m_mapSize];
187 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
189 m_map = newMap;
212 int newMap[]
[all...]
H A DStringVector.java103 String newMap[] = new String[m_mapSize];
105 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
107 m_map = newMap;
183 String newMap[] = new String[m_mapSize];
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
187 m_map = newMap;
H A DNodeVector.java132 int newMap[] = new int[m_mapSize];
134 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
136 m_map = newMap;
166 int newMap[] = new int[m_mapSize];
168 System.arraycopy(m_map, 0, newMap, 0, ff + 1);
170 m_map = newMap;
260 int newMap[] = new int[m_mapSize];
262 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
264 m_map = newMap;
376 int newMap[]
[all...]
H A DIntStack.java81 int newMap[] = new int[m_mapSize];
83 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
85 m_map = newMap;
H A DObjectStack.java81 Object newMap[] = new Object[m_mapSize];
83 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
85 m_map = newMap;
H A DStringToStringTableVector.java102 StringToStringTable newMap[] = new StringToStringTable[m_mapSize];
104 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
106 m_map = newMap;
H A DSuballocatedByteVector.java136 byte[][] newMap=new byte[newsize][];
137 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
138 m_map=newMap;
169 byte[][] newMap=new byte[newsize][];
170 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
171 m_map=newMap;
227 byte[][] newMap=new byte[newsize][];
228 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
229 m_map=newMap;
361 byte[][] newMap
[all...]
H A DSuballocatedIntVector.java169 int[][] newMap=new int[newsize][];
170 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
171 m_map=newMap;
209 int[][] newMap=new int[newsize][];
210 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
211 m_map=newMap;
267 int[][] newMap=new int[newsize][];
268 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
269 m_map=newMap;
401 int[][] newMap
[all...]
H A DStringToIntTable.java102 String newMap[] = new String[m_mapSize];
104 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
106 m_map = newMap;
H A DStringToStringTable.java95 String newMap[] = new String[m_mapSize];
97 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
99 m_map = newMap;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DCaseInsensitiveMap.java110 int[] newMap = new int[oldLen + expandBy];
112 System.arraycopy(srcMap, 0, newMap, 0, oldLen);
113 return newMap;
169 int[] newMap = new int[oldLen + 2];
171 System.arraycopy(srcMap, 0, newMap, 0, oldLen);
172 newMap[oldLen] = codePoint;
173 newMap[oldLen+1] = matchType;
174 return newMap;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DStringToIntTable.java109 String newMap[] = new String[m_mapSize];
111 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
113 m_map = newMap;
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedMapBash.java43 Map m = newMap();
73 Map m2 = newMap(); m2.putAll(m);
95 Map m = newMap();
104 Map m2 = newMap(); m2.putAll(m);
137 static Map newMap() { method in class:CheckedMapBash
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DSimpleHashtable.java202 Entry newMap[] = new Entry[newCapacity];
205 table = newMap;
220 e.next = newMap[index];
221 newMap[index] = e;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java893 Node newMap[] = new Node[m_mapSize];
895 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
897 m_map = newMap;
927 Node newMap[] = new Node[m_mapSize];
929 System.arraycopy(m_map, 0, newMap, 0, ff + 1);
931 m_map = newMap;
1021 Node newMap[] = new Node[m_mapSize];
1023 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
1025 m_map = newMap;
1118 Node newMap[]
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DChunkedIntArray.java293 int[] newMap[] = new int[m_mapSize][];
294 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
295 m_map = newMap;
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DMappings.java168 Map<String, String> newMap = new HashMap<String, String>();
176 newMap.put(key, leaf);
179 aliases.putAll(newMap);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DProperties.java285 String[] newMap = new String[map.length + 4];
286 System.arraycopy(map, 0, newMap, 0, map.length);
287 newMap[map.length] = name;
288 newMap[map.length + 1] = value;
289 map = newMap;
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DUtil.java54 static <K, V> Map<K, V> newMap() { method in class:Util
59 return Collections.synchronizedMap(Util.<K, V>newMap());
H A DPerInterface.java277 private final Map<String, M> getters = newMap();
278 private final Map<String, M> setters = newMap();
279 private final Map<String, List<MethodAndSig>> ops = newMap();
H A DWeakIdentityHashMap.java135 private Map<WeakReference<K>, V> map = newMap();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMResultBuilder.java154 NamedNodeMap newMap = docType.getEntities();
162 newMap.setNamedItem(newEntity);
166 newMap = docType.getNotations();
173 newMap.setNamedItem(newNotation);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DEndpointFactory.java241 Map<String, SDDocumentImpl> newMap = new HashMap<String, SDDocumentImpl>();
242 newMap.put(primaryDoc.getSystemId().toString(), primaryDoc);
254 if (!newMap.containsKey(url)) {
255 newMap.put(url, doc);
260 newMetadata.addAll(newMap.values());

Completed in 1757 milliseconds

12