Home | History | Annotate | Download | only in content

Lines Matching refs:newSet

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