Searched defs:copyOf (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | EnumSet.java | 144 public static <E extends Enum<E>> EnumSet<E> copyOf(EnumSet<E> s) { in copyOf() method in EnumSet 160 public static <E extends Enum<E>> EnumSet<E> copyOf(Collection<E> c) { in copyOf() method in EnumSet
|
D | Arrays.java | 3203 public static <T> T[] copyOf(T[] original, int newLength) { in copyOf() method in Arrays 3229 public static <T,U> T[] copyOf(U[] original, int newLength, Class<? extends T[]> newType) { in copyOf() method in Arrays 3255 public static byte[] copyOf(byte[] original, int newLength) { in copyOf() method in Arrays 3279 public static short[] copyOf(short[] original, int newLength) { in copyOf() method in Arrays 3303 public static int[] copyOf(int[] original, int newLength) { in copyOf() method in Arrays 3327 public static long[] copyOf(long[] original, int newLength) { in copyOf() method in Arrays 3351 public static char[] copyOf(char[] original, int newLength) { in copyOf() method in Arrays 3375 public static float[] copyOf(float[] original, int newLength) { in copyOf() method in Arrays 3399 public static double[] copyOf(double[] original, int newLength) { in copyOf() method in Arrays 3423 public static boolean[] copyOf(boolean[] original, int newLength) { in copyOf() method in Arrays
|