Searched defs:grow (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DByteArrayOutputStream.java93 grow(minCapacity);
110 private void grow(int minCapacity) { method in class:ByteArrayOutputStream
H A DConsole.java397 private char[] grow() { method in class:Console
478 cbuf = grow();
503 cbuf = grow();
H A DObjectOutputStream.java2473 grow();
2505 private void grow() { method in class:ObjectOutputStream.ReplaceTable
H A DObjectInputStream.java3289 grow();
3478 private void grow() { method in class:ObjectInputStream.HandleTable
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DPollArrayWrapper.java100 void grow(int newSize) { method in class:PollArrayWrapper
/libcore/ojluni/src/main/java/sun/net/www/
H A DMessageHeader.java56 grow();
70 grow();
303 grow();
312 grow();
328 grow();
340 /** grow the key/value arrays as needed */
342 private void grow() { method in class:MessageHeader
/libcore/ojluni/src/main/java/java/util/
H A DPriorityQueue.java291 private void grow(int minCapacity) { method in class:PriorityQueue
293 // Double size if small; else grow by 50%
339 grow(i + 1);
H A DArrayList.java249 grow(minCapacity);
266 private void grow(int minCapacity) { method in class:ArrayList
H A DVector.java36 * {@code Vector} can grow or shrink as needed to accommodate
111 * of the vector is doubled each time it needs to grow.
246 grow(minCapacity);
257 private void grow(int minCapacity) { method in class:Vector
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java956 private void grow() { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
958 int newCapacity = oldCapacity + (oldCapacity >> 1); // grow 50%
1054 grow();

Completed in 134 milliseconds