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

1 2

  /external/icu4c/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);
  /frameworks/base/core/java/android/webkit/
ByteArrayBuilder.java 31 private static final int DEFAULT_CAPACITY = 8192;
113 if (length < DEFAULT_CAPACITY) {
114 length = 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/
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);
68 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
83 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
88 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY);
98 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
103 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY);
122 final InputPointers src = new InputPointers(DEFAULT_CAPACITY);
    [all...]
ResizableIntArrayTests.java 24 private static final int DEFAULT_CAPACITY = 48;
27 final ResizableIntArray src = new ResizableIntArray(DEFAULT_CAPACITY);
31 assertEquals("new instance array length", DEFAULT_CAPACITY, array.length);
35 final ResizableIntArray src = new ResizableIntArray(DEFAULT_CAPACITY);
38 final int limit = DEFAULT_CAPACITY * 2 + 10;
42 if (i == DEFAULT_CAPACITY) {
45 if (i == DEFAULT_CAPACITY * 2) {
48 if (i < DEFAULT_CAPACITY) {
50 } else if (i < DEFAULT_CAPACITY * 2) {
52 } else if (i < DEFAULT_CAPACITY * 3)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStroke.java 36 public static final int DEFAULT_CAPACITY = 128;
39 private final ResizableIntArray mEventTimes = new ResizableIntArray(DEFAULT_CAPACITY);
40 private final ResizableIntArray mXCoordinates = new ResizableIntArray(DEFAULT_CAPACITY);
41 private final ResizableIntArray mYCoordinates = new ResizableIntArray(DEFAULT_CAPACITY);
GestureTrail.java 44 private static final int DEFAULT_CAPACITY = GestureStrokeWithPreviewPoints.PREVIEW_CAPACITY;
47 private final ResizableIntArray mXCoordinates = new ResizableIntArray(DEFAULT_CAPACITY);
48 private final ResizableIntArray mYCoordinates = new ResizableIntArray(DEFAULT_CAPACITY);
49 private final ResizableIntArray mEventTimes = new ResizableIntArray(DEFAULT_CAPACITY);
51 DBG_SHOW_POINTS ? DEFAULT_CAPACITY : 0);
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 157 * just default to DEFAULT_CAPACITY.
899 private static final int DEFAULT_CAPACITY = 11;
903 // Start with what they said, if they said it, otherwise DEFAULT_CAPACITY
905 ? DEFAULT_CAPACITY
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractHashedMap.java 58 protected static final int DEFAULT_CAPACITY = 16;
173 this(Math.max(2 * map.size(), DEFAULT_CAPACITY), DEFAULT_LOAD_FACTOR);
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 63 StringStack() : array(new jstring[DEFAULT_CAPACITY]), capacity(DEFAULT_CAPACITY), size(0) {
93 enum { DEFAULT_CAPACITY = 10 };
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface_3.6.1.M20100825-0800.jar 
com.ibm.icu_4.2.1.v20100412.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 
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 

Completed in 803 milliseconds

1 2