HomeSort by relevance Sort by last modified time
    Searched refs:expectedKeys (Results 1 - 22 of 22) sorted by null

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
HashMultimap.java 63 * @param expectedKeys the expected number of distinct keys
65 * @throws IllegalArgumentException if {@code expectedKeys} or {@code
69 int expectedKeys, int expectedValuesPerKey) {
70 return new HashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
89 private HashMultimap(int expectedKeys, int expectedValuesPerKey) {
90 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
ArrayListMultimap.java 76 * @param expectedKeys the expected number of distinct keys
78 * @throws IllegalArgumentException if {@code expectedKeys} or {@code
82 int expectedKeys, int expectedValuesPerKey) {
83 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey);
102 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) {
103 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
LinkedHashMultimap.java 93 * @param expectedKeys the expected number of distinct keys
95 * @throws IllegalArgumentException if {@code expectedKeys} or {@code
99 int expectedKeys, int expectedValuesPerKey) {
100 return new LinkedHashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
122 private LinkedHashMultimap(int expectedKeys, int expectedValuesPerKey) {
123 super(new LinkedHashMap<K, Collection<V>>(expectedKeys));
128 ((long) expectedKeys) * expectedValuesPerKey));
LinkedListMultimap.java 143 * @param expectedKeys the expected number of distinct keys
144 * @throws IllegalArgumentException if {@code expectedKeys} is negative
146 public static <K, V> LinkedListMultimap<K, V> create(int expectedKeys) {
147 return new LinkedListMultimap<K, V>(expectedKeys);
168 private LinkedListMultimap(int expectedKeys) {
169 keyCount = LinkedHashMultiset.create(expectedKeys);
170 keyToKeyHead = Maps.newHashMapWithExpectedSize(expectedKeys);
171 keyToKeyTail = Maps.newHashMapWithExpectedSize(expectedKeys);
  /external/guava/guava/src/com/google/common/collect/
ArrayListMultimap.java 81 * @param expectedKeys the expected number of distinct keys
83 * @throws IllegalArgumentException if {@code expectedKeys} or {@code
87 int expectedKeys, int expectedValuesPerKey) {
88 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey);
107 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) {
108 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
HashMultimap.java 68 * @param expectedKeys the expected number of distinct keys
70 * @throws IllegalArgumentException if {@code expectedKeys} or {@code
74 int expectedKeys, int expectedValuesPerKey) {
75 return new HashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
94 private HashMultimap(int expectedKeys, int expectedValuesPerKey) {
95 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
LinkedHashMultimap.java 97 * @param expectedKeys the expected number of distinct keys
99 * @throws IllegalArgumentException if {@code expectedKeys} or {@code
103 int expectedKeys, int expectedValuesPerKey) {
104 return new LinkedHashMultimap<K, V>(expectedKeys, expectedValuesPerKey);
126 private LinkedHashMultimap(int expectedKeys, int expectedValuesPerKey) {
127 super(new LinkedHashMap<K, Collection<V>>(expectedKeys));
132 ((long) expectedKeys) * expectedValuesPerKey));
LinkedListMultimap.java 147 * @param expectedKeys the expected number of distinct keys
148 * @throws IllegalArgumentException if {@code expectedKeys} is negative
150 public static <K, V> LinkedListMultimap<K, V> create(int expectedKeys) {
151 return new LinkedListMultimap<K, V>(expectedKeys);
172 private LinkedListMultimap(int expectedKeys) {
173 keyCount = LinkedHashMultiset.create(expectedKeys);
174 keyToKeyHead = Maps.newHashMapWithExpectedSize(expectedKeys);
175 keyToKeyTail = Maps.newHashMapWithExpectedSize(expectedKeys);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerTest.java 119 Set<String> expectedKeys = Sets.newHashSetWithExpectedSize(nTasks + nSeededEntries);
125 expectedKeys.add(s);
140 expectedKeys.add(s);
169 assertEquals(expectedKeys, Sets.union(map.keySet(), removalNotifications.keySet()));
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
StartedServiceMatcher.java 72 Set<String> expectedKeys = shadowOf(expectedIntent).getExtras().keySet();
73 intentsMatch = keys.equals(expectedKeys);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLocaleUtilsTest.java 268 private void verifyKeys(final Iterator<String> resultKeys, final String[] expectedKeys)
274 assertEquals(new HashSet<String>(Arrays.asList(expectedKeys)), allKeys);
  /external/guava/guava-tests/test/com/google/common/cache/
CacheBuilderTest.java 472 Set<String> expectedKeys = Sets.newHashSetWithExpectedSize(nTasks + nSeededEntries);
478 expectedKeys.add(s);
494 expectedKeys.add(s);
523 assertEquals(expectedKeys, Sets.union(cache.asMap().keySet(), removalNotifications.keySet()));
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /external/droiddriver/libs/
guava-13.0.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.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 
  /libcore/benchmarks/libs/
caliper.jar 

Completed in 1310 milliseconds