Searched defs:initialSize (Results 1 - 2 of 2) sorted by relevance

/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DIntentPool.java41 * @param initialSize The initial size of the pool
43 public IntentPool(int initialSize) { argument
44 mIntentPool = new ArrayList<Intent>(initialSize);
/packages/apps/Email/src/org/apache/james/mime4j/decoder/
H A DUnboundedFifoByteBuffer.java77 * @param initialSize the initial size of the buffer
80 public UnboundedFifoByteBuffer(int initialSize) { argument
81 if (initialSize <= 0) {
84 buffer = new byte[initialSize + 1];

Completed in 73 milliseconds