HomeSort by relevance Sort by last modified time
    Searched defs:DEFAULT_CAPACITY (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SimpleCache.java 18 private static final int DEFAULT_CAPACITY = 16;
22 private int capacity = DEFAULT_CAPACITY;
28 this(cacheType, DEFAULT_CAPACITY);
  /external/icu/icu4c/source/common/
uvectr64.cpp 14 #define DEFAULT_CAPACITY 8
30 _init(DEFAULT_CAPACITY, status);
47 initialCapacity = DEFAULT_CAPACITY;
53 initialCapacity = uprv_min(DEFAULT_CAPACITY, maxCapacity);
uvectr32.cpp 17 #define DEFAULT_CAPACITY 8
33 _init(DEFAULT_CAPACITY, status);
50 initialCapacity = DEFAULT_CAPACITY;
56 initialCapacity = uprv_min(DEFAULT_CAPACITY, maxCapacity);
uvector.cpp 18 #define DEFAULT_CAPACITY 8
37 _init(DEFAULT_CAPACITY, status);
57 _init(DEFAULT_CAPACITY, status);
76 initialCapacity = DEFAULT_CAPACITY;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntArrayList.java 37 private static final int DEFAULT_CAPACITY = 10;
42 this(DEFAULT_CAPACITY);
  /external/jetty/src/java/org/eclipse/jetty/util/
ArrayQueue.java 36 public static final int DEFAULT_CAPACITY = 64;
49 this(DEFAULT_CAPACITY, -1);
BlockingArrayQueue.java 50 public final int DEFAULT_CAPACITY=128;
84 _elements=new Object[DEFAULT_CAPACITY];
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursor.java 33 private static final int DEFAULT_CAPACITY = 16;
44 this(userQuery, DEFAULT_CAPACITY);
  /libcore/luni/src/main/java/java/util/
PriorityQueue.java 39 private static final int DEFAULT_CAPACITY = 11;
56 this(DEFAULT_CAPACITY);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
InputPointersTests.java 26 private static final int DEFAULT_CAPACITY = 48;
29 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
38 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
53 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
76 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
99 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
108 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY);
118 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
127 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY);
147 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY);
    [all...]
ResizableIntArrayTests.java 26 private static final int DEFAULT_CAPACITY = 48;
29 final ResizableIntArray src = new ResizableIntArray(DEFAULT_CAPACITY);
33 assertEquals("new instance array length", DEFAULT_CAPACITY, array.length);
37 final ResizableIntArray src = new ResizableIntArray(DEFAULT_CAPACITY);
40 final int limit = DEFAULT_CAPACITY * 2 + 10;
45 if (i == DEFAULT_CAPACITY) {
48 if (i == DEFAULT_CAPACITY * 2) {
51 if (i < DEFAULT_CAPACITY) {
53 } else if (i < DEFAULT_CAPACITY * 2) {
55 } else if (i < DEFAULT_CAPACITY * 3)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrailDrawingPoints.java 42 private static final int DEFAULT_CAPACITY = GestureStrokeDrawingPoints.PREVIEW_CAPACITY;
45 private final ResizableIntArray mXCoordinates = new ResizableIntArray(DEFAULT_CAPACITY);
46 private final ResizableIntArray mYCoordinates = new ResizableIntArray(DEFAULT_CAPACITY);
47 private final ResizableIntArray mEventTimes = new ResizableIntArray(DEFAULT_CAPACITY);
49 DEBUG_SHOW_POINTS ? DEFAULT_CAPACITY : 0);
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 158 * just default to DEFAULT_CAPACITY.
898 private static final int DEFAULT_CAPACITY = 11;
902 // Start with what they said, if they said it, otherwise DEFAULT_CAPACITY
904 ? DEFAULT_CAPACITY
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 64 StringStack() : array(new jstring[DEFAULT_CAPACITY]), capacity(DEFAULT_CAPACITY), size(0) {
94 enum { DEFAULT_CAPACITY = 10 };
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 354 private static final int DEFAULT_CAPACITY = 16;
407 * DEFAULT_CAPACITY.
687 this.sizeCtl = DEFAULT_CAPACITY;
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/trove4j/trove4j/1.1/
trove4j-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-util/8.1.14.v20131031/
jetty-util-8.1.14.v20131031.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 

Completed in 569 milliseconds

1 2 3