HomeSort by relevance Sort by last modified time
    Searched defs:MAXIMUM_CAPACITY (Results 1 - 8 of 8) sorted by null

  /libcore/luni/src/main/java/java/util/
HashMap.java 63 private static final int MAXIMUM_CAPACITY = 1 << 30;
153 } else if (capacity > MAXIMUM_CAPACITY) {
154 capacity = MAXIMUM_CAPACITY;
213 * The returned value will be between 0 and MAXIMUM_CAPACITY (inclusive).
218 // boolean expr is equivalent to result >= 0 && result<MAXIMUM_CAPACITY
219 return (result & ~(MAXIMUM_CAPACITY-1))==0 ? result : MAXIMUM_CAPACITY;
565 * MAXIMUM_CAPACITY, this method is a no-op. Returns the table, which
566 * will be new unless we were already at MAXIMUM_CAPACITY.
571 if (oldCapacity == MAXIMUM_CAPACITY) {
    [all...]
Hashtable.java 48 private static final int MAXIMUM_CAPACITY = 1 << 30;
132 } else if (capacity > MAXIMUM_CAPACITY) {
133 capacity = MAXIMUM_CAPACITY;
189 * The returned value will be between 0 and MAXIMUM_CAPACITY (inclusive).
194 // boolean expr is equivalent to result >= 0 && result<MAXIMUM_CAPACITY
195 return (result & ~(MAXIMUM_CAPACITY-1))==0 ? result : MAXIMUM_CAPACITY;
498 * MAXIMUM_CAPACITY, this method is a no-op. Returns the table, which
499 * will be new unless we were already at MAXIMUM_CAPACITY.
504 if (oldCapacity == MAXIMUM_CAPACITY) {
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 108 static final int MAXIMUM_CAPACITY = 1 << 30;
449 if (oldCapacity >= MAXIMUM_CAPACITY)
602 if (initialCapacity > MAXIMUM_CAPACITY)
603 initialCapacity = MAXIMUM_CAPACITY;
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 127 static final int MAXIMUM_CAPACITY = 1 << 30;
258 int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 108 static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
217 int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 310 milliseconds