Home | History | Annotate | Download | only in content

Lines Matching refs:newSet

272         String[] newSet = new String[(N*3)/2 + 2];
273 System.arraycopy(set, 0, newSet, 0, N);
274 set = newSet;
295 String[] newSet = new String[set.length/3];
296 if (pos > 0) System.arraycopy(set, 0, newSet, 0, pos);
297 if ((pos+1) < N) System.arraycopy(set, pos+1, newSet, pos, N-(pos+1));
298 return newSet;