Searched refs:inputA (Results 1 – 1 of 1) sorted by relevance
/libcore/dalvik/src/main/java/dalvik/system/ |
D | DexPathList.java | 236 private static<T> T[] concat(Class<T> componentType, T[] inputA, T[] inputB) { in concat() argument 237 T[] output = (T[]) Array.newInstance(componentType, inputA.length + inputB.length); in concat() 238 System.arraycopy(inputA, 0, output, 0, inputA.length); in concat() 239 System.arraycopy(inputB, 0, output, inputA.length, inputB.length); in concat()
|