Searched refs:grow (Results 1 - 12 of 12) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DByteArrayOutputStream.java93 grow(minCapacity);
102 private void grow(int minCapacity) { method in class:ByteArrayOutputStream
H A DConsole.java395 private char[] grow() { method in class:Console
476 cbuf = grow();
501 cbuf = grow();
H A DObjectOutputStream.java2460 grow();
2492 private void grow() { method in class:ObjectOutputStream.ReplaceTable
H A DObjectInputStream.java3277 grow();
3466 private void grow() { method in class:ObjectInputStream.HandleTable
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DPollArrayWrapper.java102 void grow(int newSize) { method in class:PollArrayWrapper
H A DAbstractPollSelectorImpl.java155 pollWrapper.grow(newSize);
/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/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DVectorTest.java100 Vector grow = new Vector(3, -1);
101 grow.addElement("one");
102 grow.addElement("two");
103 grow.addElement("three");
104 grow.addElement("four");
105 assertEquals("Wrong size", 4, grow.size());
106 assertEquals("Wrong capacity", 6, grow.capacity());
/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 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
H A DArrayList.java223 grow(minCapacity);
240 private void grow(int minCapacity) { method in class:ArrayList
/libcore/luni/src/main/java/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java927 private void grow() { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
929 int newCapacity = oldCapacity + (oldCapacity >> 1); // grow 50%
1025 grow();

Completed in 247 milliseconds