Searched refs:expectedKeys (Results 1 – 4 of 4) sorted by relevance
/external/guava/src/com/google/common/collect/ |
D | HashMultimap.java | 73 int expectedKeys, int expectedValuesPerKey) { in create() argument 74 return new HashMultimap<K, V>(expectedKeys, expectedValuesPerKey); in create() 93 private HashMultimap(int expectedKeys, int expectedValuesPerKey) { in HashMultimap() argument 94 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys)); in HashMultimap()
|
D | ArrayListMultimap.java | 86 int expectedKeys, int expectedValuesPerKey) { in create() argument 87 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey); in create() 106 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) { in ArrayListMultimap() argument 107 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys)); in ArrayListMultimap()
|
D | LinkedHashMultimap.java | 101 int expectedKeys, int expectedValuesPerKey) { in create() argument 102 return new LinkedHashMultimap<K, V>(expectedKeys, expectedValuesPerKey); in create() 124 private LinkedHashMultimap(int expectedKeys, int expectedValuesPerKey) { in LinkedHashMultimap() argument 125 super(new LinkedHashMap<K, Collection<V>>(expectedKeys)); in LinkedHashMultimap() 129 expectedKeys * expectedValuesPerKey); in LinkedHashMultimap()
|
D | LinkedListMultimap.java | 144 public static <K, V> LinkedListMultimap<K, V> create(int expectedKeys) { in create() argument 145 return new LinkedListMultimap<K, V>(expectedKeys); in create() 166 private LinkedListMultimap(int expectedKeys) { in LinkedListMultimap() argument 167 keyCount = LinkedHashMultiset.create(expectedKeys); in LinkedListMultimap() 168 keyToKeyHead = Maps.newHashMapWithExpectedSize(expectedKeys); in LinkedListMultimap() 169 keyToKeyTail = Maps.newHashMapWithExpectedSize(expectedKeys); in LinkedListMultimap()
|