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

/libcore/luni/src/main/java/java/util/zip/
H A DInflaterInputStream.java154 fill();
171 // If result == 0, fill() and try again
189 protected void fill() throws IOException { method in class:InflaterInputStream
/libcore/luni/src/main/java/java/util/
H A DArrays.java664 * the {@code byte} array to fill.
668 public static void fill(byte[] array, byte value) { method in class:Arrays
678 * the {@code byte} array to fill.
680 * the first index to fill.
682 * the last + 1 index to fill.
690 public static void fill(byte[] array, int start, int end, byte value) { method in class:Arrays
701 * the {@code short} array to fill.
705 public static void fill(short[] array, short value) { method in class:Arrays
715 * the {@code short} array to fill.
717 * the first index to fill
727 public static void fill(short[] array, int start, int end, short value) { method in class:Arrays
742 public static void fill(char[] array, char value) { method in class:Arrays
764 public static void fill(char[] array, int start, int end, char value) { method in class:Arrays
779 public static void fill(int[] array, int value) { method in class:Arrays
801 public static void fill(int[] array, int start, int end, int value) { method in class:Arrays
816 public static void fill(long[] array, long value) { method in class:Arrays
838 public static void fill(long[] array, int start, int end, long value) { method in class:Arrays
853 public static void fill(float[] array, float value) { method in class:Arrays
875 public static void fill(float[] array, int start, int end, float value) { method in class:Arrays
890 public static void fill(double[] array, double value) { method in class:Arrays
912 public static void fill(double[] array, int start, int end, double value) { method in class:Arrays
927 public static void fill(boolean[] array, boolean value) { method in class:Arrays
949 public static void fill(boolean[] array, int start, int end, boolean value) { method in class:Arrays
964 public static void fill(Object[] array, Object value) { method in class:Arrays
986 public static void fill(Object[] array, int start, int end, Object value) { method in class:Arrays
[all...]
H A DCollections.java1566 * the list to fill.
1568 * the element to fill the list with.
1572 public static <T> void fill(List<? super T> list, T object) { method in class:Collections

Completed in 301 milliseconds