OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:INITIAL_CAPACITY
(Results
1 - 10
of
10
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/widget/
CompositeListAdapter.java
33
private static final int
INITIAL_CAPACITY
= 2;
60
this(
INITIAL_CAPACITY
);
64
mAdapters = new ListAdapter[
INITIAL_CAPACITY
];
65
mCounts = new int[
INITIAL_CAPACITY
];
66
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
];
/external/srec/portable/src/
ArrayListImpl.c
27
#define
INITIAL_CAPACITY
16
71
return ArrayListCreateWithCapacity(self,
INITIAL_CAPACITY
);
/system/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 838 milliseconds