Lines Matching refs:tmp
115 Object[] tmp = (Object[])table;
116 for (int i = 0; i<tmp.length-1; i+=2) {
117 if (tmp[i].equals(key)) {
118 tmp[i+1]=value;
125 Object[] tmp = new Object[i+2];
126 System.arraycopy(array, 0, tmp, 0, i);
128 tmp[i] = key;
129 tmp[i+1] = value;
130 table = tmp;
222 Object[] tmp = new Object[array.length-2];
224 System.arraycopy(array, 0, tmp, 0, index);
226 // the end of tmp (which is two elements
228 if (index < tmp.length)
229 System.arraycopy(array, index+2, tmp, index,
230 tmp.length - index);
232 table = (tmp.length == 0) ? null : tmp;
262 Hashtable tmp = (Hashtable)table;
263 Enumeration keys = tmp.keys();
266 newArrayTable.put(o,tmp.get(o));
292 Hashtable tmp = (Hashtable)table;
293 Enumeration enum_ = tmp.keys();
294 int counter = tmp.size();
318 Hashtable<Object, Object> tmp = new Hashtable<Object, Object>(array.length/2);
320 tmp.put(array[i], array[i+1]);
322 table = tmp;
329 Hashtable tmp = (Hashtable)table;
330 Object[] array = new Object[tmp.size()*2];
331 Enumeration keys = tmp.keys();
337 array[j+1] = tmp.get(o);