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

/libcore/luni/src/main/java/java/util/zip/
H A DInflaterInputStream.java153 fill();
170 // If result == 0, fill() and try again
188 protected void fill() throws IOException { method in class:InflaterInputStream
192 len = is.fill(inf, nativeEndBufSize);
H A DZipFile.java482 public int fill(Inflater inflater, int nativeEndBufSize) throws IOException { method in class:ZipFile.RAFStream
/libcore/luni/src/main/java/java/util/
H A DArrays.java665 * the {@code byte} array to fill.
669 public static void fill(byte[] array, byte value) { method in class:Arrays
679 * the {@code byte} array to fill.
681 * the first index to fill.
683 * the last + 1 index to fill.
691 public static void fill(byte[] array, int start, int end, byte value) { method in class:Arrays
702 * the {@code short} array to fill.
706 public static void fill(short[] array, short value) { method in class:Arrays
716 * the {@code short} array to fill.
718 * the first index to fill
728 public static void fill(short[] array, int start, int end, short value) { method in class:Arrays
743 public static void fill(char[] array, char value) { method in class:Arrays
765 public static void fill(char[] array, int start, int end, char value) { method in class:Arrays
780 public static void fill(int[] array, int value) { method in class:Arrays
802 public static void fill(int[] array, int start, int end, int value) { method in class:Arrays
817 public static void fill(long[] array, long value) { method in class:Arrays
839 public static void fill(long[] array, int start, int end, long value) { method in class:Arrays
854 public static void fill(float[] array, float value) { method in class:Arrays
876 public static void fill(float[] array, int start, int end, float value) { method in class:Arrays
891 public static void fill(double[] array, double value) { method in class:Arrays
913 public static void fill(double[] array, int start, int end, double value) { method in class:Arrays
928 public static void fill(boolean[] array, boolean value) { method in class:Arrays
950 public static void fill(boolean[] array, int start, int end, boolean value) { method in class:Arrays
965 public static void fill(Object[] array, Object value) { method in class:Arrays
987 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 92 milliseconds