Searched defs:fill (Results 1 - 4 of 4) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/util/
H A DArrays.java38 public static void fill( method in class:Arrays
48 public static void fill( method in class:Arrays
58 public static void fill( method in class:Arrays
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DInflaterInputStream.java183 fill();
200 // If result == 0, fill() and try again
218 protected void fill() throws IOException { method in class:InflaterInputStream
/dalvik/libcore/luni/src/main/java/java/util/
H A DArrays.java493 * the {@code byte} array to fill.
497 public static void fill(byte[] array, byte value) { method in class:Arrays
507 * the {@code byte} array to fill.
509 * the first index to fill.
511 * the last + 1 index to fill.
519 public static void fill(byte[] array, int start, int end, byte value) { method in class:Arrays
530 * the {@code short} array to fill.
534 public static void fill(short[] array, short value) { method in class:Arrays
544 * the {@code short} array to fill.
546 * the first index to fill
556 public static void fill(short[] array, int start, int end, short value) { method in class:Arrays
571 public static void fill(char[] array, char value) { method in class:Arrays
593 public static void fill(char[] array, int start, int end, char value) { method in class:Arrays
608 public static void fill(int[] array, int value) { method in class:Arrays
630 public static void fill(int[] array, int start, int end, int value) { method in class:Arrays
645 public static void fill(long[] array, long value) { method in class:Arrays
667 public static void fill(long[] array, int start, int end, long value) { method in class:Arrays
682 public static void fill(float[] array, float value) { method in class:Arrays
704 public static void fill(float[] array, int start, int end, float value) { method in class:Arrays
719 public static void fill(double[] array, double value) { method in class:Arrays
741 public static void fill(double[] array, int start, int end, double value) { method in class:Arrays
756 public static void fill(boolean[] array, boolean value) { method in class:Arrays
778 public static void fill(boolean[] array, int start, int end, boolean value) { method in class:Arrays
793 public static void fill(Object[] array, Object value) { method in class:Arrays
815 public static void fill(Object[] array, int start, int end, Object value) { method in class:Arrays
[all...]
H A DCollections.java1643 * the list to fill.
1645 * the element to fill the list with.
1649 public static <T> void fill(List<? super T> list, T object) { method in class:Collections

Completed in 4328 milliseconds