/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
TreeMultimap.java | 135 @Override SortedSet<V> createCollection() { 140 Collection<V> createCollection(@Nullable K key) { 144 return super.createCollection(key);
|
HashMultimap.java | 108 @Override Set<V> createCollection() {
|
ArrayListMultimap.java | 124 @Override List<V> createCollection() {
|
AbstractMapBasedMultimap.java | 51 * #createCollection()}, which creates an empty collection of values for a key. 55 * in the multimap, {@code AbstractMapBasedMultimap} calls {@link #createCollection()} 57 * {@link #createCollection()} directly, and a new instance should be created 61 * construction, and {@link #createCollection()} could return a {@link 68 * <p>The collections created by {@link #createCollection()} may or may not 76 * multimap, even if the underlying map and {@link #createCollection()} method 96 * createCollection is added to the map. That same collection instance 140 return unmodifiableCollectionSubclass(createCollection()); 147 * Each call to {@code createCollection} should create a new instance. 154 abstract Collection<V> createCollection(); [all...] |
LinkedHashMultimap.java | 240 Set<V> createCollection() { 254 Collection<V> createCollection(K key) {
|
Multimaps.java | 121 @Override protected Collection<V> createCollection() { 182 @Override protected List<V> createCollection() { 239 @Override protected Set<V> createCollection() { 298 @Override protected SortedSet<V> createCollection() { [all...] |
ImmutableMultimap.java | 129 @Override Collection<V> createCollection() {
|
ImmutableSetMultimap.java | 153 @Override Collection<V> createCollection() {
|
/external/guava/guava/src/com/google/common/collect/ |
AbstractSortedSetMultimap.java | 32 * collections into sorted sets. The {@link #createCollection} method 51 abstract SortedSet<V> createCollection(); 57 return Collections.unmodifiableSortedSet(createCollection());
|
TreeMultimap.java | 141 @Override SortedSet<V> createCollection() { 146 Collection<V> createCollection(@Nullable K key) { 150 return super.createCollection(key);
|
AbstractListMultimap.java | 30 * {@code Lists}. The {@link #createCollection} method must return a {@code 49 @Override abstract List<V> createCollection();
|
AbstractSetMultimap.java | 30 * {@code Sets}. The {@link #createCollection} method must return a {@code Set}. 47 @Override abstract Set<V> createCollection();
|
ArrayListMultimap.java | 129 @Override List<V> createCollection() {
|
HashMultimap.java | 113 @Override Set<V> createCollection() {
|
AbstractMapBasedMultimap.java | 54 * #createCollection()}, which creates an empty collection of values for a key. 58 * in the multimap, {@code AbstractMapBasedMultimap} calls {@link #createCollection()} 60 * {@link #createCollection()} directly, and a new instance should be created 64 * construction, and {@link #createCollection()} could return a {@link 71 * <p>The collections created by {@link #createCollection()} may or may not 79 * multimap, even if the underlying map and {@link #createCollection()} method 99 * createCollection is added to the map. That same collection instance 143 return unmodifiableCollectionSubclass(createCollection()); 150 * Each call to {@code createCollection} should create a new instance. 157 abstract Collection<V> createCollection(); [all...] |
LinkedHashMultimap.java | 244 Set<V> createCollection() { 258 Collection<V> createCollection(K key) { 566 map.put(key, createCollection(key));
|
Multimaps.java | 125 @Override protected Collection<V> createCollection() { 207 @Override protected List<V> createCollection() { 285 @Override protected Set<V> createCollection() { 365 @Override protected SortedSet<V> createCollection() { [all...] |
ImmutableMultimap.java | 130 @Override Collection<V> createCollection() {
|
ImmutableSetMultimap.java | 159 @Override Collection<V> createCollection() {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
TestMultimapGenerator.java | 44 Collection<V> createCollection(Iterable<? extends V> values);
|
TestStringListMultimapGenerator.java | 59 public Collection<String> createCollection(Iterable<? extends String> values) {
|
TestStringSetMultimapGenerator.java | 58 public Collection<String> createCollection(Iterable<? extends String> values) {
|
MultimapTestSuiteBuilder.java | 323 private Collection<V> createCollection(V v) { 325 .createCollection(Collections.singleton(v)); 335 mapEntry(sampleKeys.e0, createCollection(sampleValues.e0)), 336 mapEntry(sampleKeys.e1, createCollection(sampleValues.e1)), 337 mapEntry(sampleKeys.e2, createCollection(sampleValues.e2)), 338 mapEntry(sampleKeys.e3, createCollection(sampleValues.e3)), 339 mapEntry(sampleKeys.e4, createCollection(sampleValues.e4))); 676 public Collection<V> createCollection(Iterable<? extends V> values) { 678 .createCollection(values);
|
/external/guava/guava-gwt/src/com/google/common/collect/ |
LinkedHashMultimap_CustomFieldSerializer.java | 48 map.put(key, multimap.createCollection(key));
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MultimapsCollectionTest.java | 338 public Collection<String> createCollection(Iterable<? extends String> values) { 528 public Collection<Integer> createCollection(Iterable<? extends Integer> values) { 551 public Collection<Integer> createCollection(Iterable<? extends Integer> values) {
|