HomeSort by relevance Sort by last modified time
    Searched refs:INITIAL_CAPACITY (Results 1 - 11 of 11) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/widget/
CompositeListAdapter.java 38 private static final int INITIAL_CAPACITY = 2;
65 this(INITIAL_CAPACITY);
69 mAdapters = new ListAdapter[INITIAL_CAPACITY];
70 mCounts = new int[INITIAL_CAPACITY];
71 mViewTypeCounts = new int[INITIAL_CAPACITY];
  /system/core/libcutils/
array.c 23 #define INITIAL_CAPACITY (4)
50 int newCapacity = (oldCapacity == 0) ? INITIAL_CAPACITY : oldCapacity;
  /frameworks/ex/common/java/com/android/common/widget/
CompositeCursorAdapter.java 30 private static final int INITIAL_CAPACITY = 2;
66 this(context, INITIAL_CAPACITY);
71 mPartitions = new Partition[INITIAL_CAPACITY];
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
DiskLruCache.java 52 private static final int INITIAL_CAPACITY = 32;
65 INITIAL_CAPACITY, LOAD_FACTOR, true));
  /external/srec/portable/src/
ArrayListImpl.c 27 #define INITIAL_CAPACITY 16
71 return ArrayListCreateWithCapacity(self, INITIAL_CAPACITY);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SerializedFrame.java 48 private final static int INITIAL_CAPACITY = 64;
175 mByteOutputStream = new DirectByteOutputStream(INITIAL_CAPACITY);
  /external/icu4c/common/
unorm_it.c 29 INITIAL_CAPACITY=100
62 UChar charsBuffer[INITIAL_CAPACITY];
63 uint32_t statesBuffer[INITIAL_CAPACITY+1]; /* one more than charsBuffer[]! */
591 uni->capacity=INITIAL_CAPACITY;
  /external/icu4c/layoutex/
RunArrays.cpp 39 fCapacity = INITIAL_CAPACITY;
  /external/icu4c/layoutex/layout/
RunArrays.h 30 #define INITIAL_CAPACITY 16
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 35 static final int INITIAL_CAPACITY = 16;
75 value = new char[INITIAL_CAPACITY];
88 value = new char[count + INITIAL_CAPACITY];
641 || (wasted >= INITIAL_CAPACITY && wasted >= (count >> 1))) {
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 805 private static final int INITIAL_CAPACITY = 16;
807 new RunnableScheduledFuture[INITIAL_CAPACITY];
    [all...]

Completed in 188 milliseconds