HomeSort by relevance Sort by last modified time
    Searched full:capacity (Results 176 - 200 of 925) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
WrappedShortBufferTest.java 27 capacity = BUFFER_LENGTH;
95 assertEquals(buf.capacity(), 20);
ReadOnlyCharBufferTest.java 170 buf.put(new char[buf.capacity() + 1], 0, buf.capacity() + 1);
240 String str = String.valueOf(new char[buf.capacity()]);
259 String longStr = String.valueOf(new char[buf.capacity()+1]);
ReadOnlyWrappedCharBufferTest1.java 27 capacity = BUFFER_LENGTH;
ReadOnlyWrappedDoubleBufferTest.java 26 capacity = BUFFER_LENGTH;
ReadOnlyWrappedFloatBufferTest.java 26 capacity = BUFFER_LENGTH;
ReadOnlyWrappedIntBufferTest.java 26 capacity = BUFFER_LENGTH;
ReadOnlyWrappedLongBufferTest.java 26 capacity = BUFFER_LENGTH;
ReadOnlyWrappedShortBufferTest.java 26 capacity = BUFFER_LENGTH;
SliceDirectByteBufferTest.java 26 capacity = BUFFER_LENGTH - 2;
SliceHeapByteBufferTest.java 26 capacity = BUFFER_LENGTH - 2;
  /packages/apps/Camera/src/com/android/camera/gallery/
LruCache.java 37 public LruCache(final int capacity) {
41 return size() > capacity;
  /packages/apps/Gallery/src/com/android/camera/gallery/
LruCache.java 33 public LruCache(final int capacity) {
37 return size() > capacity;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursor.java 51 public ListSuggestionCursor(String userQuery, int capacity) {
53 mSuggestions = new ArrayList<Suggestion>(capacity);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
VectorTest.java 57 assertEquals("Wrong capacity", 10, v.capacity());
68 assertEquals("Wrong capacity", 100, v.capacity());
82 assertEquals("Failed to inc capacity by proper amount",
83 12, v.capacity());
91 assertEquals("Wrong capacity", 6, grow.capacity());
280 * @tests java.util.Vector#capacity()
283 // Test for method int java.util.Vector.capacity()
    [all...]
  /external/icu4c/i18n/unicode/
udatpg.h 201 * @param capacity the capacity of bestPattern.
210 UChar *bestPattern, int32_t capacity,
235 * @param capacity
236 * the capacity of bestPattern.
247 UChar *bestPattern, int32_t capacity,
264 * @param capacity the capacity of skeleton.
273 UChar *skeleton, int32_t capacity,
293 * @param capacity the capacity of base skeleton
    [all...]
  /dalvik/tests/051-thread/src/
Main.java 40 * Simple thread capacity test.
  /external/chromium/third_party/icu/public/common/unicode/
ucnvsel.h 98 * @param length the capacity of this buffer (can be equal to or larger than
115 * @param bufferCapacity the capacity of this buffer
117 * @return the required buffer capacity to hold serialize data (even if the call fails
118 * with a U_BUFFER_OVERFLOW_ERROR, it will return the required capacity)
  /external/chromium/third_party/icu/source/test/perf/usetperf/
bitset.cpp 13 // TODO: have a separate capacity, so the len can just be set to
  /external/chromium/third_party/icu/source/tools/genprops/
genprops.h 90 writeAdditionalData(FILE *f, uint8_t *p, int32_t capacity, int32_t indexes[16]);
  /external/icu4c/common/unicode/
ucnvsel.h 118 * @param length the capacity of this buffer (can be equal to or larger than
135 * @param bufferCapacity the capacity of this buffer
137 * @return the required buffer capacity to hold serialize data (even if the call fails
138 * with a U_BUFFER_OVERFLOW_ERROR, it will return the required capacity)
  /external/icu4c/test/perf/usetperf/
bitset.cpp 13 // TODO: have a separate capacity, so the len can just be set to
  /external/icu4c/tools/genprops/
genprops.h 90 writeAdditionalData(FILE *f, uint8_t *p, int32_t capacity, int32_t indexes[16]);
  /external/qemu/hw/
power_supply.h 24 * For systems where the charger determines the maximum battery capacity
  /external/webkit/WebCore/history/
PageCache.cpp 58 void PageCache::setCapacity(int capacity)
60 ASSERT(capacity >= 0);
61 m_capacity = max(capacity, 0);
162 // FIXME: <rdar://problem/5211190> This limit of 42 risks growing the page cache far beyond its nominal capacity.
  /libcore/luni/src/main/java/java/util/
WeakHashMap.java 193 * capacity.
195 * @param capacity
196 * the initial capacity of this map.
198 * if the capacity is less than zero.
200 public WeakHashMap(int capacity) {
201 if (capacity >= 0) {
203 elementData = newEntryArray(capacity == 0 ? 1 : capacity);
213 * Constructs a new {@code WeakHashMap} instance with the specified capacity
216 * @param capacity
    [all...]

Completed in 1014 milliseconds

1 2 3 4 5 6 78 91011>>