Home | History | Annotate | Download | only in app

Lines Matching defs:oldLength

294             int oldLength = old != null ? old.length : 0;
295 String[] result = new String[oldLength + add.length];
296 if (old != null) System.arraycopy(old, 0, result, 0, oldLength);
297 System.arraycopy(add, 0, result, oldLength, add.length);