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

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ArrayListMultimap.java 62 @VisibleForTesting transient int expectedValuesPerKey;
77 * @param expectedValuesPerKey the expected average number of values per key
79 * expectedValuesPerKey} is negative
82 int expectedKeys, int expectedValuesPerKey) {
83 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey);
99 expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
102 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) {
104 checkArgument(expectedValuesPerKey >= 0);
105 this.expectedValuesPerKey = expectedValuesPerKey;
    [all...]
HashMultimap.java 49 transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
64 * @param expectedValuesPerKey the expected average number of values per key
66 * expectedValuesPerKey} is negative
69 int expectedKeys, int expectedValuesPerKey) {
70 return new HashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
89 private HashMultimap(int expectedKeys, int expectedValuesPerKey) {
91 Preconditions.checkArgument(expectedValuesPerKey >= 0);
92 this.expectedValuesPerKey = expectedValuesPerKey;
109 return Sets.<V>newHashSetWithExpectedSize(expectedValuesPerKey);
    [all...]
LinkedHashMultimap.java 72 transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
94 * @param expectedValuesPerKey the expected average number of values per key
96 * expectedValuesPerKey} is negative
99 int expectedKeys, int expectedValuesPerKey) {
100 return new LinkedHashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
122 private LinkedHashMultimap(int expectedKeys, int expectedValuesPerKey) {
124 Preconditions.checkArgument(expectedValuesPerKey >= 0);
125 this.expectedValuesPerKey = expectedValuesPerKey;
128 ((long) expectedKeys) * expectedValuesPerKey));
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ArrayListMultimap.java 67 @VisibleForTesting transient int expectedValuesPerKey;
82 * @param expectedValuesPerKey the expected average number of values per key
84 * expectedValuesPerKey} is negative
87 int expectedKeys, int expectedValuesPerKey) {
88 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey);
104 expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
107 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) {
109 checkArgument(expectedValuesPerKey >= 0);
110 this.expectedValuesPerKey = expectedValuesPerKey;
    [all...]
HashMultimap.java 54 transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
69 * @param expectedValuesPerKey the expected average number of values per key
71 * expectedValuesPerKey} is negative
74 int expectedKeys, int expectedValuesPerKey) {
75 return new HashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
94 private HashMultimap(int expectedKeys, int expectedValuesPerKey) {
96 Preconditions.checkArgument(expectedValuesPerKey >= 0);
97 this.expectedValuesPerKey = expectedValuesPerKey;
114 return Sets.<V>newHashSetWithExpectedSize(expectedValuesPerKey);
    [all...]
LinkedHashMultimap.java 76 transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
98 * @param expectedValuesPerKey the expected average number of values per key
100 * expectedValuesPerKey} is negative
103 int expectedKeys, int expectedValuesPerKey) {
104 return new LinkedHashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
126 private LinkedHashMultimap(int expectedKeys, int expectedValuesPerKey) {
128 Preconditions.checkArgument(expectedValuesPerKey >= 0);
129 this.expectedValuesPerKey = expectedValuesPerKey;
132 ((long) expectedKeys) * expectedValuesPerKey));
    [all...]
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 44 milliseconds