OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MAXIMUM_CAPACITY
(Results
1 - 22
of
22
) sorted by null
/external/smack/src/org/jivesoftware/smack/util/collections/
AbstractHashedMap.java
70
protected static final int
MAXIMUM_CAPACITY
= 1 << 30;
579
if (newCapacity <=
MAXIMUM_CAPACITY
) {
630
if (proposedCapacity >
MAXIMUM_CAPACITY
) {
631
newCapacity =
MAXIMUM_CAPACITY
;
636
if (newCapacity >
MAXIMUM_CAPACITY
) {
637
newCapacity =
MAXIMUM_CAPACITY
;
[
all
...]
/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
;
216
* The returned value will be between 0 and
MAXIMUM_CAPACITY
(inclusive).
221
// boolean expr is equivalent to result >= 0 && result<
MAXIMUM_CAPACITY
222
return (result & ~(
MAXIMUM_CAPACITY
-1))==0 ? result :
MAXIMUM_CAPACITY
;
579
*
MAXIMUM_CAPACITY
, this method is a no-op. Returns the table, which
580
* will be new unless we were already at
MAXIMUM_CAPACITY
.
585
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
;
192
* The returned value will be between 0 and
MAXIMUM_CAPACITY
(inclusive).
197
// boolean expr is equivalent to result >= 0 && result<
MAXIMUM_CAPACITY
198
return (result & ~(
MAXIMUM_CAPACITY
-1))==0 ? result :
MAXIMUM_CAPACITY
;
497
*
MAXIMUM_CAPACITY
, this method is a no-op. Returns the table, which
498
* will be new unless we were already at
MAXIMUM_CAPACITY
.
503
if (oldCapacity ==
MAXIMUM_CAPACITY
) {
[
all
...]
/libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java
123
static final int
MAXIMUM_CAPACITY
= 1 << 30;
361
if (c > threshold && tab.length <
MAXIMUM_CAPACITY
)
718
if (initialCapacity >
MAXIMUM_CAPACITY
)
719
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
...]
/prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar
/prebuilts/sdk/tools/lib/
guava-10.0.1.jar
lint.jar
lint_api.jar
lint_checks.jar
/libcore/benchmarks/libs/
caliper.jar
/external/droiddriver/libs/
guava-13.0.jar
/prebuilts/devtools/tools/lib/
guava-13.0.1.jar
/prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar
/prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar
/prebuilts/tools/common/guava-tools/
guava-13.0.1.jar
/prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar
/prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6/
gradle-tooling-api-1.6.jar
/prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6-rc-1/
gradle-tooling-api-1.6-rc-1.jar
/prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.7/
gradle-tooling-api-1.7.jar
Completed in 1403 milliseconds