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

/libcore/ojluni/src/main/java/java/io/
H A DBufferedInputStream.java205 private void fill() throws IOException { method in class:BufferedInputStream
226 // Note: This would need to be changed if fill()
254 fill();
275 fill();
369 fill();
475 // Else retry in case a new buf was CASed in fill()
H A DBufferedReader.java129 private void fill() throws IOException { method in class:BufferedReader
152 // i.e, double the size of the buffer on each fill. Do not directly
193 fill();
223 fill();
231 fill();
335 fill();
422 fill();
466 fill();
/libcore/ojluni/src/main/java/java/util/zip/
H A DInflaterInputStream.java158 fill();
241 protected void fill() throws IOException { method in class:InflaterInputStream
H A DZipFile.java418 // Override fill() method to provide an extra "dummy" byte
421 protected void fill() throws IOException { method in class:ZipFile.ZipFileInflaterInputStream
/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
H A DDoubleNodeTest.java53 nodes.add(fill(array, Nodes.doubleBuilder(array.length)));
54 nodes.add(fill(array, Nodes.doubleBuilder()));
90 private Node.OfDouble fill(double[] array, Node.Builder.OfDouble nb) { method in class:DoubleNodeTest
H A DIntNodeTest.java53 nodes.add(fill(array, Nodes.intBuilder(array.length)));
54 nodes.add(fill(array, Nodes.intBuilder()));
90 private Node.OfInt fill(int[] array, Node.Builder.OfInt nb) { method in class:IntNodeTest
H A DLongNodeTest.java53 nodes.add(fill(array, Nodes.longBuilder(array.length)));
54 nodes.add(fill(array, Nodes.longBuilder()));
90 private Node.OfLong fill(long[] array, Node.Builder.OfLong nb) { method in class:LongNodeTest
H A DNodeTest.java54 nodes.add(fill(array, Nodes.builder(array.length, LambdaTestHelpers.integerArrayGenerator)));
55 nodes.add(fill(array, Nodes.builder()));
66 Node<Integer> fill(Integer[] array, Node.Builder<Integer> nb) { method in class:NodeTest
/libcore/ojluni/src/main/java/java/util/jar/
H A DManifest.java337 fill();
351 fill();
375 fill();
402 fill();
439 private void fill() throws IOException { method in class:Manifest.FastInputStream
/libcore/ojluni/src/main/java/sun/misc/
H A DSoftCache.java63 * <p> In typical usage this class will be subclassed and the <code>fill</code>
66 * <code>fill</code> method on that key in an attempt to construct a
67 * corresponding value. If the <code>fill</code> method returns such a value
73 * protected Object fill(Object key) {
237 * attempt to construct one by invoking the <code>fill</code> method.
265 protected Object fill(Object key) { method in class:SoftCache
272 * this key, then invoke the <code>fill</code> method in an attempt to
283 * @see #fill
289 v = fill(key);
/libcore/ojluni/src/main/java/sun/net/www/
H A DMimeTable.java343 fill(entry, name, value);
346 void fill(MimeEntry entry, String name, String value) { method in class:MimeTable
/libcore/ojluni/src/main/java/java/util/
H A DArrays.java2870 public static void fill(long[] a, long val) { method in class:Arrays
2892 public static void fill(long[] a, int fromIndex, int toIndex, long val) { method in class:Arrays
2905 public static void fill(int[] a, int val) { method in class:Arrays
2927 public static void fill(int[] a, int fromIndex, int toIndex, int val) { method in class:Arrays
2940 public static void fill(short[] a, short val) { method in class:Arrays
2962 public static void fill(short[] a, int fromIndex, int toIndex, short val) { method in class:Arrays
2975 public static void fill(char[] a, char val) { method in class:Arrays
2997 public static void fill(char[] a, int fromIndex, int toIndex, char val) { method in class:Arrays
3010 public static void fill(byte[] a, byte val) { method in class:Arrays
3032 public static void fill(byt method in class:Arrays
3045 public static void fill(boolean[] a, boolean val) { method in class:Arrays
3067 public static void fill(boolean[] a, int fromIndex, int toIndex, method in class:Arrays
3081 public static void fill(double[] a, double val) { method in class:Arrays
3103 public static void fill(double[] a, int fromIndex, int toIndex,double val){ method in class:Arrays
3116 public static void fill(float[] a, float val) { method in class:Arrays
3138 public static void fill(float[] a, int fromIndex, int toIndex, float val) { method in class:Arrays
3153 public static void fill(Object[] a, Object val) { method in class:Arrays
3177 public static void fill(Object[] a, int fromIndex, int toIndex, Object val) { method in class:Arrays
[all...]
H A DCollections.java590 * @param obj The element with which to fill the specified list.
594 public static <T> void fill(List<? super T> list, T obj) { method in class:Collections
4231 Arrays.fill(a, 0, n, element);
4242 Arrays.fill(a, 0, n, element);
4244 Arrays.fill(a, 0, n, element);

Completed in 323 milliseconds